diff --git a/src/Classes/PassiveSpec.lua b/src/Classes/PassiveSpec.lua index e28e74a86b8..d782a19590c 100644 --- a/src/Classes/PassiveSpec.lua +++ b/src/Classes/PassiveSpec.lua @@ -293,6 +293,18 @@ function PassiveSpecClass:ImportFromNodeList(classId, ascendClassId, secondaryAs self:BuildAllDependsAndPaths() end +function PassiveSpecClass:IsTattooBlocked(tattooNode) + local blockingPassive = tattooNode and tattooNode.blockingPassive + if blockingPassive then + for passiveId in pairs(blockingPassive) do + if self.allocNodes[passiveId] then + return true + end + end + end + return false +end + function PassiveSpecClass:AllocateDecodedNodes(nodes, isCluster, endian) for i = 1, #nodes - 1, 2 do local id @@ -1142,7 +1154,7 @@ function PassiveSpecClass:BuildAllDependsAndPaths() for id, node in pairs(self.nodes) do -- If node is tattooed, replace it - if self.hashOverrides[node.id] then + if self.hashOverrides[node.id] and not self:IsTattooBlocked(self.hashOverrides[node.id]) then self:ReplaceNode(node, self.hashOverrides[node.id]) end diff --git a/src/Classes/PassiveTree.lua b/src/Classes/PassiveTree.lua index 6ea7da09a03..6ef821c20a1 100644 --- a/src/Classes/PassiveTree.lua +++ b/src/Classes/PassiveTree.lua @@ -258,7 +258,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 @@ -277,14 +277,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 diff --git a/src/Classes/PassiveTreeView.lua b/src/Classes/PassiveTreeView.lua index f774737424e..aee212d4f30 100644 --- a/src/Classes/PassiveTreeView.lua +++ b/src/Classes/PassiveTreeView.lua @@ -503,6 +503,7 @@ function PassiveTreeViewClass:Draw(build, viewPort, inputEvents) elseif hoverNode and (hoverNode.isTattoo or (hoverNode.type == "Normal" and (hoverNode.dn == "Strength" or hoverNode.dn == "Dexterity" or hoverNode.dn == "Intelligence")) or (hoverNode.type == "Notable" and #hoverNode.sd > 0 and (hoverNode.sd[1]:match("+30 to Dexterity") or hoverNode.sd[1]:match("+30 to Strength") or hoverNode.sd[1]:match("+30 to Intelligence"))) + or (hoverNode.type == "Notable" and hoverNode.ascendancyName) or hoverNode.type == "Keystone") and not hoverNode.expansionSkill then build.treeTab:ModifyNodePopup(hoverNode, viewPort) @@ -1500,6 +1501,7 @@ function PassiveTreeViewClass:AddNodeTooltip(tooltip, node, build) if node and (node.isTattoo or (node.type == "Normal" and (node.dn == "Strength" or node.dn == "Dexterity" or node.dn == "Intelligence")) or (node.type == "Notable" and #node.sd > 0 and (node.sd[1]:match("+30 to Dexterity") or node.sd[1]:match("+30 to Strength") or node.sd[1]:match("+30 to Intelligence"))) + or (node.type == "Notable" and node.ascendancyName) or (node.type == "Keystone") or (node.type == "Mastery")) and not node.expansionSkill then diff --git a/src/Classes/TreeTab.lua b/src/Classes/TreeTab.lua index 77bfe3ffdbf..30f8ce39981 100644 --- a/src/Classes/TreeTab.lua +++ b/src/Classes/TreeTab.lua @@ -850,8 +850,10 @@ function TreeTabClass:ModifyNodePopup(selectedNode) for id, node in pairs(self.build.spec.tree.tattoo.nodes) do if (nodeName:match(node.targetType:gsub("^Small ", "")) or (node.targetValue ~= "" and nodeValue:match(node.targetValue)) or (node.targetType == "Small Attribute" and (nodeName == "Intelligence" or nodeName == "Strength" or nodeName == "Dexterity")) - or (node.targetType == "Keystone" and treeNodes[selectedNode.id].type == node.targetType)) - and node.MinimumConnected <= numLinkedNodes and ((node.legacy == nil or node.legacy == false) or node.legacy == self.showLegacyTattoo) then + or (node.targetType == "Keystone" and treeNodes[selectedNode.id].type == node.targetType) + or (node.targetType == "Ascendancy Notable" and treeNodes[selectedNode.id].type == "Notable" and selectedNode.ascendancyName)) + and node.MinimumConnected <= numLinkedNodes and ((node.legacy == nil or node.legacy == false) or node.legacy == self.showLegacyTattoo) + and not self.build.spec:IsTattooBlocked(node) then local combine = false for id, desc in pairs(node.stats) do combine = (id:match("^local_display.*") and #node.stats == (#node.sd - 1)) or combine @@ -875,7 +877,7 @@ function TreeTabClass:ModifyNodePopup(selectedNode) end end table.sort(modGroups, function(a, b) return a.label < b.label end) - end + end local function addModifier(selectedNode) local newTattooNode = self.build.spec.tree.tattoo.nodes[modGroups[controls.modSelect.selIndex].id] newTattooNode.id = selectedNode.id @@ -951,7 +953,7 @@ function TreeTabClass:ModifyNodePopup(selectedNode) local tattooSdMap = { } for _, node in pairs(self.build.spec.hashOverrides) do - if node.isTattoo and not node.dn:find("Runegraft") then + if node.isTattoo and not self.build.spec:IsTattooBlocked(node) and not node.dn:find("Runegraft") then if tooltip then local combined = "" for _, line in ipairs(node.sd) do diff --git a/src/Data/ModCache.lua b/src/Data/ModCache.lua index f47a433e225..28316edcfac 100755 --- a/src/Data/ModCache.lua +++ b/src/Data/ModCache.lua @@ -1354,6 +1354,7 @@ c["+4 to Level of Socketed Aura Gems"]={{[1]={[1]={slotName="{SlotName}",type="S 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 Maximum Fanatic Charges Limited to 1 Ascendancy Tattoo"]={{}," Maximum Fanatic Charges Limited to 1 Ascendancy Tattoo "} 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} @@ -2308,6 +2309,7 @@ c["1% of Chaos Damage Leeched as Life"]={{[1]={flags=0,keywordFlags=0,name="Chao c["1% of Cold Damage Leeched as Life"]={{[1]={flags=0,keywordFlags=0,name="ColdDamageLifeLeech",type="BASE",value=1}},nil} c["1% of Damage Dealt by your Minions is Leeched to you as Life"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="BASE",value=1}}}}," Dealt by your s is Leeched to you as Life "} c["1% of Damage Dealt by your Minions is Leeched to you as Life Minions gain 40% of Maximum Life as Extra Maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="DamageGainAsEnergyShield",type="BASE",value=1}}}}," Dealt by your s is Leeched to you as Life Minions gain 40% of Maximum Life "} +c["1% of Damage Dealt by your Minions is Leeched to you as Life Minions gain 40% of Maximum Life as Extra Maximum Energy Shield Limited to 1 Ascendancy Tattoo"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="DamageGainAsEnergyShield",type="BASE",value=1}}}}," Dealt by your s is Leeched to you as Life Minions gain 40% of Maximum Life Limited to 1 Ascendancy Tattoo "} c["1% of Damage Leeched as Energy Shield against Frozen Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Frozen"},flags=0,keywordFlags=0,name="DamageEnergyShieldLeech",type="BASE",value=1}},nil} c["1% of Damage Leeched as Life"]={{[1]={flags=0,keywordFlags=0,name="DamageLifeLeech",type="BASE",value=1}},nil} c["1% of Damage Leeched as Life against Cursed Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Cursed"},flags=0,keywordFlags=0,name="DamageLifeLeech",type="BASE",value=1}},nil} @@ -2337,6 +2339,8 @@ c["1.5% of Physical Attack Damage Leeched as Life"]={{[1]={flags=1,keywordFlags= c["1.5% of Physical Attack Damage Leeched as Mana"]={{[1]={flags=1,keywordFlags=0,name="PhysicalDamageManaLeech",type="BASE",value=1.5}},nil} c["1.5% of Physical Damage prevented from Hits in the past"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="BASE",value=1.5}}," prevented from Hits in the past "} c["1.5% of Physical Damage prevented from Hits in the past 10 seconds is Regenerated as Life per second"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageMitigatedLifePseudoRecoup",type="BASE",value=15},[2]={flags=0,keywordFlags=0,name="PhysicalDamageMitigatedLifePseudoRecoupDuration",type="BASE",value="10"}},nil} +c["1.50% of Physical Damage prevented from Hits in the past"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="BASE",value=1.5}}," prevented from Hits in the past "} +c["1.50% of Physical Damage prevented from Hits in the past 10 seconds is Regenerated as Life per second"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageMitigatedLifePseudoRecoup",type="BASE",value=15},[2]={flags=0,keywordFlags=0,name="PhysicalDamageMitigatedLifePseudoRecoupDuration",type="BASE",value="10"}},nil} c["1.6% of Physical Attack Damage Leeched as Life"]={{[1]={flags=1,keywordFlags=0,name="PhysicalDamageLifeLeech",type="BASE",value=1.6}},nil} c["10 to 16 Added Physical Damage with Bow Attacks"]={{[1]={flags=131076,keywordFlags=0,name="PhysicalMin",type="BASE",value=10},[2]={flags=131076,keywordFlags=0,name="PhysicalMax",type="BASE",value=16}},nil} c["10 to 24 Added Physical Damage with Bow Attacks"]={{[1]={flags=131076,keywordFlags=0,name="PhysicalMin",type="BASE",value=10},[2]={flags=131076,keywordFlags=0,name="PhysicalMax",type="BASE",value=24}},nil} @@ -2413,6 +2417,7 @@ c["10% chance to create Consecrated Ground on Melee Kill, lasting 4 seconds"]={{ c["10% chance to create Consecrated Ground on Melee Kill, lasting 4 seconds 40% increased Melee Damage with Hits at Close Range"]={{[1]={[1]={type="Condition",var="KilledRecently"},[2]={type="Condition",var="AtCloseRange"},flags=67109120,keywordFlags=262144,name="Damage",type="BASE",value=10}}," to create Consecrated Ground , lasting 4 seconds 40% increased "} c["10% chance to create Consecrated Ground when you Hit a Rare or Unique Enemy, lasting 8 seconds"]={{}," to create Consecrated Ground when you Hit a Rare or Unique Enemy, lasting 8 seconds "} c["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"]={{[1]={flags=0,keywordFlags=0,name="LocalEffect",type="BASE",value=10}}," to create Consecrated Ground when you Hit a Rare or Unique Enemy, lasting 8 seconds s of Consecrated Ground you create Linger "} +c["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 Limited to 1 Ascendancy Tattoo"]={{[1]={flags=0,keywordFlags=0,name="LocalEffect",type="BASE",value=10}}," to create Consecrated Ground when you Hit a Rare or Unique Enemy, lasting 8 seconds s of Consecrated Ground you create Linger Limited to 1 Ascendancy Tattoo "} c["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"]={{[1]={flags=0,keywordFlags=0,name="LocalEffect",type="BASE",value=10}}," to create Consecrated Ground when you Hit a Rare or Unique Enemy, lasting 8 seconds s of Consecrated Ground you create Linger Nearby Enemies take 10% increased Elemental Damage "} c["10% chance to create a Smoke Cloud on Kill"]={{}," to create a Smoke Cloud "} c["10% chance to create a Smoke Cloud when Hit"]={{}," to create a Smoke Cloud when Hit "} @@ -2442,6 +2447,7 @@ c["10% chance to gain a Power Charge if you Knock an Enemy Back with Melee Damag c["10% chance to gain a Power Charge on Critical Strike"]={nil,"a Power Charge "} c["10% chance to gain a Power Charge on Critical Strike 10% chance to gain Elusive on Critical Strike"]={nil,"a Power Charge 10% chance to on Critical Strike "} c["10% chance to gain a Power Charge on Critical Strike 10% chance to gain Elusive on Critical Strike Damage cannot be Reflected"]={nil,"a Power Charge 10% chance to on Critical Strike Damage cannot be Reflected "} +c["10% chance to gain a Power Charge on Critical Strike 10% chance to gain Elusive on Critical Strike Damage cannot be Reflected Limited to 1 Ascendancy Tattoo"]={nil,"a Power Charge 10% chance to on Critical Strike Damage cannot be Reflected Limited to 1 Ascendancy Tattoo "} c["10% chance to gain a Power Charge on Critical Strike with Wands"]={nil,"a Power Charge with Wands "} c["10% chance to gain a Power Charge on Kill"]={nil,"a Power Charge "} c["10% chance to gain a Power Charge on Kill 5% increased Projectile Speed per Frenzy Charge"]={nil,"a Power Charge 5% increased Projectile Speed "} @@ -3220,6 +3226,7 @@ c["15% chance to gain a Frenzy Charge when your Trap is triggered by an Enemy 30 c["15% chance to gain a Power Charge on Critical Strike"]={nil,"a Power Charge "} c["15% chance to gain a Power Charge on Critical Strike 30% chance to gain a Power Charge on Non-Critical Strike"]={nil,"a Power Charge 30% chance to gain a Power Charge on Non-Critical Strike "} c["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"]={nil,"a Power Charge 30% chance to gain a Power Charge on Non-Critical Strike +1 to Maximum Power Charges "} +c["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 Limited to 1 Ascendancy Tattoo"]={nil,"a Power Charge 30% chance to gain a Power Charge on Non-Critical Strike +1 to Maximum Power Charges Limited to 1 Ascendancy Tattoo "} c["15% chance to gain a Power Charge on Hit if 4 Crusader Items are Equipped"]={nil,"a Power Charge on Hit "} c["15% chance to gain a Power Charge on Hit if 4 Crusader Items are Equipped Attacks have +1.5% to Critical Strike Chance if 4 Elder Items are Equipped"]={nil,"a Power Charge on Hit Attacks have +1.5% to Critical Strike Chance "} c["15% chance to gain a Power Charge on Hit if 4 Crusader Items are Equipped Attacks have +2% to Critical Strike Chance if 4 Elder Items are Equipped"]={nil,"a Power Charge on Hit Attacks have +2% to Critical Strike Chance "} @@ -3760,6 +3767,7 @@ c["20% chance to Cover Rare or Unique Enemies in Ash for 10 Seconds on Hit +6% C c["20% chance to Cover Rare or Unique Enemies in Ash for 10 Seconds on Hit Unaffected by Ignite"]={{}," to Cover Rare or Unique Enemies in Ash Unaffected by Ignite "} c["20% chance to Cover Rare or Unique Enemies in Ash for 10 Seconds on Hit Unaffected by Ignite 20% increased Warcry Buff Effect"]={{[1]={flags=4,keywordFlags=0,name="BuffEffect",type="BASE",value=20}}," to Cover Rare or Unique Enemies in Ash Unaffected by Ignite 20% increased Warcry "} c["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"]={{[1]={flags=4,keywordFlags=0,name="BuffEffect",type="BASE",value=20}}," to Cover Rare or Unique Enemies in Ash Unaffected by Ignite 20% increased Warcry 10% increased Strength "} +c["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 Limited to 1 Ascendancy Tattoo"]={{[1]={flags=4,keywordFlags=0,name="BuffEffect",type="BASE",value=20}}," to Cover Rare or Unique Enemies in Ash Unaffected by Ignite 20% increased Warcry 10% increased Strength Limited to 1 Ascendancy Tattoo "} c["20% chance to Curse non-Cursed Enemies with a random Hex on Hit"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=1,noSupports=true,triggered=true}}},nil} c["20% chance to Defend with 200% of Armour"]={{[1]={[1]={type="Condition",var="ArmourMax"},flags=0,keywordFlags=0,name="ArmourDefense",source="Armour Mastery: Max Calc",type="MAX",value=100},[2]={[1]={type="Condition",var="ArmourAvg"},flags=0,keywordFlags=0,name="ArmourDefense",source="Armour Mastery: Average Calc",type="MAX",value=20},[3]={[1]={neg=true,type="Condition",var="ArmourMax"},[2]={neg=true,type="Condition",var="ArmourAvg"},flags=0,keywordFlags=0,name="ArmourDefense",source="Armour Mastery: Min Calc",type="MAX",value=0}},nil} c["20% chance to Freeze"]={{[1]={flags=0,keywordFlags=0,name="EnemyFreezeChance",type="BASE",value=20}},nil} @@ -4063,6 +4071,7 @@ c["20% of Overkill Damage is Leeched as Life"]={{[1]={flags=0,keywordFlags=0,nam c["20% of Overkill Damage is Leeched as Life 20% increased Attack Speed while Leeching"]={{[1]={[1]={type="Condition",var="Leeching"},flags=0,keywordFlags=0,name="DamageLifeLeech",type="BASE",value=20}}," Overkill 20% increased Attack Speed "} c["20% of Overkill Damage is Leeched as Life 20% increased Attack Speed while Leeching Cannot be Stunned while Leeching"]={{[1]={[1]={type="Condition",var="Leeching"},[2]={type="Condition",var="Leeching"},flags=0,keywordFlags=0,name="DamageLifeLeech",type="BASE",value=20}}," Overkill 20% increased Attack Speed Cannot be Stunned "} c["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"]={{[1]={[1]={type="Condition",var="Leeching"},[2]={type="Condition",var="Leeching"},flags=0,keywordFlags=0,name="DamageLifeLeech",type="BASE",value=20}}," Overkill 20% increased Attack Speed Cannot be Stunned You are Unaffected by Bleeding while Leeching "} +c["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 Limited to 1 Ascendancy Tattoo"]={{[1]={[1]={type="Condition",var="Leeching"},[2]={type="Condition",var="Leeching"},flags=0,keywordFlags=0,name="DamageLifeLeech",type="BASE",value=20}}," Overkill 20% increased Attack Speed Cannot be Stunned You are Unaffected by Bleeding while Leeching Limited to 1 Ascendancy Tattoo "} c["20% of Physical Damage Converted to Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageConvertToChaos",type="BASE",value=20}},nil} c["20% of Physical Damage Converted to Lightning during Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="PhysicalDamageConvertToLightning",type="BASE",value=20}},nil} c["20% of Physical Damage from Hits taken as Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageFromHitsTakenAsCold",type="BASE",value=20}},nil} @@ -4266,6 +4275,7 @@ c["25% chance for Flasks you use to not consume Charges"]={{[1]={flags=0,keyword c["25% chance that if you would gain Endurance Charges, you instead gain up to maximum Endurance Charges"]={{[1]={flags=0,keywordFlags=0,name="EnduranceChargesMax",type="BASE",value=25}}," that if you would gain Endurance Charges, you instead gain up to "} c["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]={[1]={type="Condition",var="BeenHitRecently"},flags=0,keywordFlags=0,name="EnduranceChargesMax",type="BASE",value=25}}," that if you would gain Endurance Charges, you instead gain up to Gain 1 Endurance Charge every second "} c["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"]={{[1]={[1]={type="Condition",var="BeenHitRecently"},flags=0,keywordFlags=0,name="EnduranceChargesMax",type="BASE",value=25}}," that if you would gain Endurance Charges, you instead gain up to Gain 1 Endurance Charge every second +1 to Maximum Endurance Charges "} +c["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 Limited to 1 Ascendancy Tattoo"]={{[1]={[1]={type="Condition",var="BeenHitRecently"},flags=0,keywordFlags=0,name="EnduranceChargesMax",type="BASE",value=25}}," that if you would gain Endurance Charges, you instead gain up to Gain 1 Endurance Charge every second +1 to Maximum Endurance Charges Limited to 1 Ascendancy Tattoo "} c["25% chance that if you would gain Power Charges, you instead gain up to"]={{}," that if you would gain Power Charges, you instead gain up to "} c["25% chance that if you would gain Power Charges, you instead gain up to your maximum number of Power Charges"]={{}," that if you would gain Power Charges, you instead gain up to your maximum number of Power Charges "} c["25% chance to Aggravate Bleeding on targets you Critically Strike with Attacks"]={{}," to Aggravate Bleeding on targets you Critically Strike "} @@ -4273,6 +4283,7 @@ c["25% chance to Aggravate Bleeding on targets you Hit with Attacks"]={{}," to A c["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"]={{[1]={flags=0,keywordFlags=65536,name="BlockChance",type="BASE",value=25}}," to Aggravate Bleeding on targets you Hit Gain 50% from Equipped Shield instead of the Shield's value "} c["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"]={{[1]={flags=0,keywordFlags=65536,name="BlockChance",type="BASE",value=25}}," to Aggravate Bleeding on targets you Hit Gain 50% from Equipped Shield instead of the Shield's value Inherent Bonuses from Dual Wielding are doubled "} c["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%"]={{[1]={flags=0,keywordFlags=65536,name="BlockChance",type="BASE",value=25}}," to Aggravate Bleeding on targets you Hit Gain 50% 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% "} +c["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% Limited to 1 Ascendancy Tattoo"]={{[1]={flags=0,keywordFlags=65536,name="BlockChance",type="BASE",value=25}}," to Aggravate Bleeding on targets you Hit Gain 50% 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% Limited to 1 Ascendancy Tattoo "} c["25% chance to Aggravate Bleeding on targets you Hit with Exerted Attacks"]={{}," to Aggravate Bleeding on targets you Hit with Exerted Attacks "} c["25% chance to Avoid Elemental Ailments"]={{[1]={flags=0,keywordFlags=0,name="AvoidElementalAilments",type="BASE",value=25}},nil} c["25% chance to Avoid Elemental Ailments while Phasing"]={{[1]={[1]={type="Condition",var="Phasing"},flags=0,keywordFlags=0,name="AvoidElementalAilments",type="BASE",value=25}},nil} @@ -4283,6 +4294,7 @@ c["25% chance to Avoid being Ignited"]={{[1]={flags=0,keywordFlags=0,name="Avoid c["25% chance to Avoid being Poisoned"]={{[1]={flags=0,keywordFlags=0,name="AvoidPoison",type="BASE",value=25}},nil} c["25% chance to Avoid being Shocked"]={{[1]={flags=0,keywordFlags=0,name="AvoidShock",type="BASE",value=25}},nil} c["25% chance to Blind Enemies on Hit"]={{}," to Blind Enemies "} +c["25% chance to Blind Enemies on Hit Limited to 1 Ascendancy Tattoo"]={{}," to Blind Enemies Limited to 1 Ascendancy Tattoo "} c["25% chance to Blind Enemies on Hit with Melee Weapons"]={{}," to Blind Enemies with Melee Weapons "} c["25% chance to Blind Enemies on Hit with Melee Weapons 35% increased Effect of Blind from Melee Weapons"]={{[1]={flags=4,keywordFlags=0,name="LocalEffect",type="BASE",value=25}}," to Blind Enemies with Melee Weapons 35% increased of Blind from Melee Weapons "} c["25% chance to Blind Enemies on hit"]={{}," to Blind Enemies "} @@ -4350,6 +4362,7 @@ c["25% chance to gain an Endurance Charge each second while Channelling"]={nil," c["25% chance to gain an Endurance Charge when you Block"]={nil,"an Endurance Charge when you Block "} c["25% chance to gain an Endurance Charge when you Stun an Enemy"]={nil,"an Endurance Charge when you Stun an Enemy "} c["25% chance to gain an Endurance Charge when you Stun an Enemy 10% increased Stun Duration on Enemies per Endurance Charge"]={nil,"an Endurance Charge when you Stun an Enemy 10% increased Stun Duration "} +c["25% chance to gain an Endurance Charge when you Stun an Enemy 10% increased Stun Duration on Enemies per Endurance Charge Limited to 1 Ascendancy Tattoo"]={nil,"an Endurance Charge when you Stun an Enemy 10% increased Stun Duration Limited to 1 Ascendancy Tattoo "} c["25% chance to gain an Endurance Charge when you are Hit"]={nil,"an Endurance Charge when you are Hit "} c["25% chance to gain an Endurance Charge when you are Hit 50% increased Armour while stationary"]={nil,"an Endurance Charge when you are Hit 50% increased Armour "} c["25% chance to inflict Brittle"]={{[1]={flags=0,keywordFlags=0,name="EnemyBrittleChance",type="BASE",value=25}},nil} @@ -4507,6 +4520,7 @@ 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 taken from other Enemies near your Marked Enemy Your Mark Transfers to another Enemy when Marked Enemy dies Limited to 1 Ascendancy Tattoo"]={{[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 Limited to 1 Ascendancy Tattoo "} 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} @@ -4728,6 +4742,7 @@ c["30% chance to gain a Frenzy Charge on Killing an Enemy affected by at least 5 c["30% chance to gain a Frenzy Charge on Killing an Enemy affected by at least 5 Poisons 15% chance to gain a Power Charge on Killing an Enemy affected by fewer than 5 Poisons"]={nil,"a Frenzy Charge ing an Enemy affected by at least 5 Poisons 15% chance to gain a Power Charge ing an Enemy affected by fewer than 5 Poisons "} c["30% chance to gain a Power Charge on Non-Critical Strike"]={nil,"a Power Charge on Non-Critical Strike "} c["30% chance to gain a Power Charge on Non-Critical Strike +1 to Maximum Power Charges"]={nil,"a Power Charge on Non-Critical Strike +1 to Maximum Power Charges "} +c["30% chance to gain a Power Charge on Non-Critical Strike +1 to Maximum Power Charges Limited to 1 Ascendancy Tattoo"]={nil,"a Power Charge on Non-Critical Strike +1 to Maximum Power Charges Limited to 1 Ascendancy Tattoo "} c["30% chance to gain a Power Charge when you Stun"]={nil,"a Power Charge when you Stun "} c["30% chance to gain a Power Charge when you Stun Gain Unholy Might for 4 seconds on Critical Strike"]={{[1]={[1]={type="Condition",var="CriticalStrike"},flags=0,keywordFlags=0,name="Condition:UnholyMight",type="FLAG",value=true}},"a Power Charge when you Stun Gain "} c["30% chance to gain an Endurance Charge on Hitting an Enemy with no Armour"]={nil,"an Endurance Charge on Hitting an Enemy with no Armour "} @@ -4740,6 +4755,7 @@ c["30% chance to gain an Endurance Charge when you are Hit"]={nil,"an Endurance c["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"]={nil,"an Endurance Charge when you are Hit 25% chance that if you would gain Endurance Charges, you instead gain up to maximum Endurance Charges "} c["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"]={nil,"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 "} c["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"]={nil,"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 +1 to Maximum Endurance Charges "} +c["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 Limited to 1 Ascendancy Tattoo"]={nil,"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 +1 to Maximum Endurance Charges Limited to 1 Ascendancy Tattoo "} c["30% chance to gain an Endurance Charge when you are Hit 30% chance to gain an Endurance Charge when you Stun an Enemy"]={nil,"an Endurance Charge when you are Hit 30% chance to gain an Endurance Charge when you Stun an Enemy "} c["30% chance to gain an Frenzy Charge on Kill"]={nil,"an Frenzy Charge "} c["30% chance to gain an Frenzy Charge on Kill 45% chance that if you would gain Frenzy Charges, you instead gain up to your maximum number of Frenzy Charges"]={nil,"an Frenzy Charge 45% chance that if you would gain Frenzy Charges, you instead gain up to your maximum number of Frenzy Charges "} @@ -4750,6 +4766,7 @@ c["30% chance to gain an additional Vaal Soul on Kill Corrupted"]={nil,"an addit c["30% chance to inflict Corrosion on Hit with Attacks"]={{[1]={flags=0,keywordFlags=0,name="Condition:CanCorrode",type="FLAG",value=true}},nil} c["30% chance to inflict a Grasping Vine on Melee Weapon Hit"]={{}," to inflict a Grasping Vine on Hit "} c["30% chance to take 50% less Area Damage from Hits"]={{[1]={flags=512,keywordFlags=0,name="Damage",type="BASE",value=30}}," to take 50% less from Hits "} +c["30% chance to take 50% less Area Damage from Hits Limited to 1 Ascendancy Tattoo"]={{[1]={flags=512,keywordFlags=0,name="Damage",type="BASE",value=30}}," to take 50% less from Hits Limited to 1 Ascendancy Tattoo "} c["30% chance when you pay a Skill's Cost to gain that much Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=30}}," when you pay a Skill's Cost to gain that much "} c["30% chance when you pay a Skill's Cost to gain that much Mana +35 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=30}}," when you pay a Skill's Cost to gain that much +35 to maximum Energy Shield "} c["30% faster Restoration of Ward"]={{[1]={flags=0,keywordFlags=0,name="WardRechargeFaster",type="INC",value=30}},nil} @@ -5627,11 +5644,13 @@ c["5% reduced Skill Effect Duration"]={{[1]={flags=0,keywordFlags=0,name="Durati c["50 Mana gained when you Block"]={{[1]={flags=0,keywordFlags=0,name="ManaOnBlock",type="BASE",value=50}},nil} c["50% Chance to avoid being Stunned during Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="AvoidStun",type="BASE",value=50}},nil} c["50% chance for Energy Shield Recharge to start when you Suppress Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="EnergyShield",type="BASE",value=50}}," for Recharge to start when you Suppress Damage "} +c["50% chance for Energy Shield Recharge to start when you Suppress Spell Damage Limited to 1 Ascendancy Tattoo"]={{[1]={flags=2,keywordFlags=0,name="EnergyShield",type="BASE",value=50}}," for Recharge to start when you Suppress Damage Limited to 1 Ascendancy Tattoo "} c["50% chance for Flasks you use to not consume Charges"]={{[1]={flags=0,keywordFlags=0,name="FlaskChanceNotConsumeCharges",type="BASE",value=50}},nil} c["50% chance for Impales on Enemies you Kill to Reflect Damage to surrounding Enemies"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="BASE",value=50}}," for Impales you Kill to Reflect to surrounding Enemies "} c["50% chance for Spell Hits against you to inflict Poison"]={{}," for Hits to inflict Poison "} c["50% chance for Spell Hits against you to inflict Poison 15% increased Movement Speed while Poisoned"]={{[1]={flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={[1]={actor="enemy",type="Condition",var="Poisoned"},flags=2,keywordFlags=0,name="MovementSpeed",type="BASE",value=50}}}}," for Hits to inflict Poison 15% increased "} c["50% chance for used Retaliation Skills to remain Usable and not consume a Cooldown Use"]={{[1]={flags=0,keywordFlags=0,name="AdditionalCooldownUses",type="BASE",value=50}}," for used Retaliation Skills to remain Usable and not consume a "} +c["50% chance for used Retaliation Skills to remain Usable and not consume a Cooldown Use Limited to 1 Ascendancy Tattoo"]={{[1]={flags=0,keywordFlags=0,name="AdditionalCooldownUses",type="BASE",value=50}}," for used Retaliation Skills to remain Usable and not consume a Limited to 1 Ascendancy Tattoo "} c["50% chance to Aggravate Bleeding on targets you Stun with Attacks Hits"]={{}," to Aggravate Bleeding on targets you Stun Hits "} c["50% chance to Avoid Bleeding"]={{[1]={flags=0,keywordFlags=0,name="AvoidBleed",type="BASE",value=50}},nil} c["50% chance to Avoid being Chilled"]={{[1]={flags=0,keywordFlags=0,name="AvoidChill",type="BASE",value=50}},nil} @@ -7741,6 +7760,7 @@ c["Bleeding you inflict deals Damage 15% faster"]={{[1]={flags=0,keywordFlags=0, c["Bleeding you inflict deals Damage 4% faster per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=0,name="BleedFaster",type="INC",value=4}},nil} c["Bleeding you inflict deals Damage 5% faster"]={{[1]={flags=0,keywordFlags=0,name="BleedFaster",type="INC",value=5}},nil} c["Bleeding you inflict is Aggravated"]={nil,"Bleeding you inflict is Aggravated "} +c["Bleeding you inflict is Aggravated Limited to 1 Ascendancy Tattoo"]={nil,"Bleeding you inflict is Aggravated Limited to 1 Ascendancy Tattoo "} c["Bleeding you inflict is Reflected to you"]={nil,"Bleeding you inflict is Reflected to you "} c["Bleeding you inflict is Reflected to you +1% to Chaos Resistance per Poison on you"]={nil,"Bleeding you inflict is Reflected to you +1% to Chaos Resistance per Poison on you "} c["Blight has 30% increased Hinder Duration"]={{[1]={[1]={includeTransfigured=true,skillName="Blight",type="SkillName"},flags=0,keywordFlags=0,name="Duration",type="INC",value=30}}," Hinder "} @@ -7748,6 +7768,7 @@ c["Blight has 30% increased Hinder Duration You cannot be Hindered"]={{[1]={[1]= c["Blind Chilled Enemies on Hit"]={nil,"Blind Chilled Enemies on Hit "} c["Blind Chilled Enemies on Hit Damage Penetrates 20% Cold Resistance against Chilled Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Chilled"},flags=4,keywordFlags=0,name="ColdPenetration",type="BASE",value=20}},"Blind Chilled Enemies "} c["Blind Enemies on Hit"]={nil,"Blind Enemies on Hit "} +c["Blind Enemies on Hit Limited to 1 Ascendancy Tattoo"]={nil,"Blind Enemies on Hit Limited to 1 Ascendancy Tattoo "} c["Blind does not affect your Light Radius"]={nil,"Blind does not affect your Light Radius "} c["Blind does not affect your Light Radius 25% more Melee Critical Strike Chance while Blinded"]={nil,"Blind does not affect your Light Radius 25% more Melee Critical Strike Chance while Blinded "} c["Blind does not affect your Light Radius Blind you inflict is Reflected to you"]={nil,"Blind does not affect your Light Radius Blind you inflict is Reflected to you "} @@ -7865,6 +7886,7 @@ c["Cannot Recover Energy Shield to above Armour"]={{[1]={flags=0,keywordFlags=0, c["Cannot Recover Energy Shield to above Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="EvasionESRecoveryCap",type="FLAG",value=true}},nil} c["Cannot Recover Life other than from Leech"]={{[1]={flags=0,keywordFlags=0,name="CannotRecoverLifeOutsideLeech",type="FLAG",value=true},[2]={flags=0,keywordFlags=0,name="NoLifeRegen",type="FLAG",value=true}},nil} c["Cannot Summon Mirage Archers while near your Mirage Archers"]={nil,"Cannot Summon Mirage Archers while near your Mirage Archers "} +c["Cannot Summon Mirage Archers while near your Mirage Archers Limited to 1 Ascendancy Tattoo"]={nil,"Cannot Summon Mirage Archers while near your Mirage Archers Limited to 1 Ascendancy Tattoo "} c["Cannot be Blinded"]={{[1]={flags=0,keywordFlags=0,name="Condition:CannotBeBlinded",type="FLAG",value=true},[2]={flags=0,keywordFlags=0,name="BlindImmune",type="FLAG",value=true}},nil} c["Cannot be Blinded while affected by Precision"]={{[1]={[1]={type="Condition",var="AffectedByPrecision"},flags=0,keywordFlags=0,name="Condition:CannotBeBlinded",type="FLAG",value=true},[2]={[1]={type="Condition",var="AffectedByPrecision"},flags=0,keywordFlags=0,name="BlindImmune",type="FLAG",value=true}},nil} c["Cannot be Chilled"]={{[1]={flags=0,keywordFlags=0,name="ChillImmune",type="FLAG",value=true}},nil} @@ -7910,6 +7932,7 @@ c["Cannot gain Power Charges"]={nil,"Cannot gain Power Charges "} c["Cannot gain Unbound Fury while Unbound"]={nil,"Cannot gain Unbound Fury while Unbound "} c["Cannot gain Unbound Fury while Unbound Your Hits always inflict Freeze, Shock and Ignite while Unbound"]={nil,"Cannot gain Unbound Fury while Unbound Your Hits always inflict Freeze, Shock and Ignite while Unbound "} c["Cannot gain Unbound Fury while Unbound Your Hits always inflict Freeze, Shock and Ignite while Unbound 100% more Elemental Damage while Unbound"]={nil,"Cannot gain Unbound Fury while Unbound Your Hits always inflict Freeze, Shock and Ignite while Unbound 100% more Elemental Damage while Unbound "} +c["Cannot gain Unbound Fury while Unbound Your Hits always inflict Freeze, Shock and Ignite while Unbound 100% more Elemental Damage while Unbound Limited to 1 Ascendancy Tattoo"]={nil,"Cannot gain Unbound Fury while Unbound Your Hits always inflict Freeze, Shock and Ignite while Unbound 100% more Elemental Damage while Unbound Limited to 1 Ascendancy Tattoo "} c["Cannot have Minions other than Animated Weapons"]={nil,"Cannot have Minions other than Animated Weapons "} c["Cannot have Minions other than Animated Weapons Maximum number of Summoned Golems is Doubled"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={globalLimit=100,globalLimitKey="ActiveGolemLimitDoubledLimit",type="Multiplier",var="ActiveGolemLimitDoubled"},flags=0,keywordFlags=0,name="ActiveGolemLimit",type="MORE",value=100}}},[2]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Multiplier:ActiveGolemLimitDoubled",type="OVERRIDE",value=1}}}},"Cannot have s other than Animated Weapons "} c["Cannot have Minions other than Holy Armaments"]={nil,"Cannot have Minions other than Holy Armaments "} @@ -8199,6 +8222,7 @@ c["Damage from your Critical Strikes cannot be Reflected"]={nil,"Damage from you c["Damage from your Critical Strikes cannot be Reflected +5% to Critical Strike Multiplier per Power Charge"]={nil,"Damage from your Critical Strikes cannot be Reflected +5% to Critical Strike Multiplier per Power Charge "} c["Damage of Enemies Hitting you is Unlucky"]={nil,"Damage of Enemies Hitting you is Unlucky "} c["Damage of Enemies Hitting you is Unlucky Damage with Hits is Unlucky"]={nil,"Damage of Enemies Hitting you is Unlucky Damage with Hits is Unlucky "} +c["Damage of Enemies Hitting you is Unlucky Damage with Hits is Unlucky Limited to 1 Ascendancy Tattoo"]={nil,"Damage of Enemies Hitting you is Unlucky Damage with Hits is Unlucky Limited to 1 Ascendancy Tattoo "} c["Damage of Enemies Hitting you is Unlucky while you are Cursed with Vulnerability"]={nil,"Damage of Enemies Hitting you is Unlucky while you are Cursed with Vulnerability "} c["Damage of Enemies Hitting you is Unlucky while you are Cursed with Vulnerability You count as on Full Life while you are Cursed with Vulnerability"]={nil,"Damage of Enemies Hitting you is Unlucky while you are Cursed with Vulnerability You count as on Full Life while you are Cursed with Vulnerability "} c["Damage of Enemies Hitting you is Unlucky while you are on Full Life"]={nil,"Damage of Enemies Hitting you is Unlucky while you are on Full Life "} @@ -8324,6 +8348,7 @@ c["Effects of Consecrated Ground you create Linger for 2 seconds"]={nil,"Effects c["Effects of Consecrated Ground you create Linger for 2 seconds 30% chance to create Consecrated Ground when you Hit a Rare or Unique Enemy, lasting 8 seconds"]={nil,"Effects of Consecrated Ground you create Linger for 2 seconds 30% chance to create Consecrated Ground when you Hit a Rare or Unique Enemy, lasting 8 seconds "} c["Effects of Consecrated Ground you create Linger for 4 seconds"]={nil,"Effects of Consecrated Ground you create Linger for 4 seconds "} c["Effects of Consecrated Ground you create Linger for 4 seconds Effects of Profane Ground you create Linger for 4 seconds"]={nil,"Effects of Consecrated Ground you create Linger for 4 seconds Effects of Profane Ground you create Linger for 4 seconds "} +c["Effects of Consecrated Ground you create Linger for 4 seconds Limited to 1 Ascendancy Tattoo"]={nil,"Effects of Consecrated Ground you create Linger for 4 seconds Limited to 1 Ascendancy Tattoo "} c["Effects of Consecrated Ground you create Linger for 4 seconds Nearby Enemies take 10% increased Elemental Damage"]={nil,"Effects of Consecrated Ground you create Linger for 4 seconds Nearby Enemies take 10% increased Elemental Damage "} c["Effects of Consecrated Ground you create while affected by Zealotry Linger for 2 seconds"]={nil,"Effects of Consecrated Ground you create while affected by Zealotry Linger for 2 seconds "} c["Effects of Consecrated Ground you create while affected by Zealotry Linger for 2 seconds Consecrated Ground you create while affected by Zealotry causes enemies to take 10% increased Damage"]={nil,"Effects of Consecrated Ground you create while affected by Zealotry Linger for 2 seconds Consecrated Ground you create while affected by Zealotry causes enemies to take 10% increased Damage "} @@ -8447,6 +8472,7 @@ c["Enemies you Curse cannot Recharge Energy Shield"]={nil,"cannot Recharge Energ c["Enemies you Curse take 6% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={[1]={type="Condition",var="Cursed"},flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=6}}}},nil} c["Enemies you Freeze remain Frozen for at least 2 seconds"]={nil,"Enemies you Freeze remain Frozen for at least 2 seconds "} c["Enemies you Freeze remain Frozen for at least 2 seconds Hits that fail to Freeze due to insufficient Freeze Duration inflict Hoarfrost"]={nil,"Enemies you Freeze remain Frozen for at least 2 seconds Hits that fail to Freeze due to insufficient Freeze Duration inflict Hoarfrost "} +c["Enemies you Freeze remain Frozen for at least 2 seconds Hits that fail to Freeze due to insufficient Freeze Duration inflict Hoarfrost Limited to 1 Ascendancy Tattoo"]={nil,"Enemies you Freeze remain Frozen for at least 2 seconds Hits that fail to Freeze due to insufficient Freeze Duration inflict Hoarfrost Limited to 1 Ascendancy Tattoo "} c["Enemies you Kill during Effect have a 25% chance to Explode, dealing a tenth of their maximum Life as Damage of a Random Element"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="ExplodeMod",type="LIST",value={amount=10,chance=0.25,keyOfScaledMod="chance",type="RandomElement"}},[2]={flags=0,keywordFlags=0,name="CanExplode",type="FLAG",value=true}},nil} c["Enemies you Kill during Effect have a 30% chance to Explode, dealing a tenth of their maximum Life as Damage of a Random Element"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="ExplodeMod",type="LIST",value={amount=10,chance=0.3,keyOfScaledMod="chance",type="RandomElement"}},[2]={flags=0,keywordFlags=0,name="CanExplode",type="FLAG",value=true}},nil} c["Enemies you Kill have a 10% chance to Explode, dealing a quarter of their maximum Life as Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ExplodeMod",type="LIST",value={amount=25,chance=0.1,keyOfScaledMod="chance",type="Chaos"}},[2]={flags=0,keywordFlags=0,name="CanExplode",type="FLAG",value=true}},nil} @@ -8513,6 +8539,7 @@ c["Every 4 seconds, Regenerate Energy Shield equal to 1% of Evasion Rating over c["Every 4 seconds, Regenerate Life equal to 1% of Armour and Evasion Rating over 1 second"]={{[1]={[1]={type="Condition",var="LifeRegenBurstFull"},[2]={percent="1",stat="Armour",type="PercentStat"},flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=1},[2]={[1]={type="Condition",var="LifeRegenBurstAvg"},[2]={percent="1",stat="Armour",type="PercentStat"},flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=0.25},[3]={[1]={type="Condition",var="LifeRegenBurstFull"},[2]={percent="1",stat="Evasion",type="PercentStat"},flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=1},[4]={[1]={type="Condition",var="LifeRegenBurstAvg"},[2]={percent="1",stat="Evasion",type="PercentStat"},flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=0.25}},nil} c["Every 4 seconds, remove Curses and Ailments from you"]={nil,"Every 4 seconds, remove Curses and Ailments from you "} c["Every 4 seconds, remove Curses and Ailments from you Every 4 seconds, Regenerate 100% of Life over one second"]={nil,"Every 4 seconds, remove Curses and Ailments from you Every 4 seconds, Regenerate 100% of Life over one second "} +c["Every 4 seconds, remove Curses and Ailments from you Every 4 seconds, Regenerate 100% of Life over one second Limited to 1 Ascendancy Tattoo"]={nil,"Every 4 seconds, remove Curses and Ailments from you Every 4 seconds, Regenerate 100% of Life over one second Limited to 1 Ascendancy Tattoo "} c["Every 4 seconds, remove Curses and Ailments from you Grants Armour equal to 6% of your Reserved Mana to you and nearby Allies"]={nil,"Every 4 seconds, remove Curses and Ailments from you Grants Armour equal to 6% of your Reserved Mana to you and nearby Allies "} c["Every 5 seconds, gain one of the following for 5 seconds:"]={nil,"Every 5 seconds, gain one of the following for 5 seconds: "} c["Every 5 seconds, gain one of the following for 5 seconds: Your Hits are always Critical Strikes"]={nil,"Every 5 seconds, gain one of the following for 5 seconds: Your Hits are always Critical Strikes "} @@ -8608,6 +8635,8 @@ c["Gain +50 Life when you Taunt an Enemy"]={nil,"+50 Life when you Taunt an Enem c["Gain +50 Life when you Taunt an Enemy You gain Onslaught for 1 seconds on Killing Taunted Enemies"]={{[1]={[1]={type="Condition",var="KilledTauntedEnemyRecently"},flags=0,keywordFlags=0,name="Condition:Onslaught",type="FLAG",value=true}},"+50 when you Taunt an Enemy You gain "} c["Gain 1 Endurance Charge every second if you've been Hit Recently"]={{}," Endurance Charge every second "} c["Gain 1 Endurance Charge every second if you've been Hit Recently +1 to Maximum Endurance Charges"]={{[1]={[1]={type="Condition",var="BeenHitRecently"},flags=0,keywordFlags=0,name="EnduranceChargesMax",type="BASE",value=1}}," Endurance Charge every second +1 to "} +c["Gain 1 Endurance Charge every second if you've been Hit Recently +1 to Maximum Endurance Charges Limited to 1 Ascendancy Tattoo"]={{[1]={[1]={type="Condition",var="BeenHitRecently"},flags=0,keywordFlags=0,name="EnduranceChargesMax",type="BASE",value=1}}," Endurance Charge every second +1 to Limited to 1 Ascendancy Tattoo "} +c["Gain 1 Endurance Charge every second if you've been Hit Recently Limited to 1 Ascendancy Tattoo"]={{}," Endurance Charge every second Limited to 1 Ascendancy Tattoo "} c["Gain 1 Endurance Charge every second if you've been Hit Recently and"]={{}," Endurance Charge every second and "} c["Gain 1 Endurance Charge every second if you've been Hit Recently and 4 Warlord Items are Equipped"]={{}," Endurance Charge every second and 4 Warlord Items are Equipped "} c["Gain 1 Endurance Charge on use"]={{}," Endurance Charge on use "} @@ -8619,6 +8648,7 @@ c["Gain 1 Energy Shield on Kill per Level"]={{[1]={[1]={type="Condition",var="Ki 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 +4 to Maximum Fanatic Charges Limited to 1 Ascendancy Tattoo"]={{}," 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 Limited to 1 Ascendancy Tattoo "} 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 "} @@ -8642,6 +8672,7 @@ c["Gain 1 Unbound Fury when you inflict an Elemental Ailment with a Hit on an En c["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 Cannot gain Unbound Fury while Unbound"]={{}," 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 Cannot gain Unbound Fury while Unbound "} c["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 Cannot gain Unbound Fury while Unbound Your Hits always inflict Freeze, Shock and Ignite while Unbound"]={{}," 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 Cannot gain Unbound Fury while Unbound Your Hits always inflict Freeze, Shock and Ignite while Unbound "} c["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 Cannot gain Unbound Fury while Unbound Your Hits always inflict Freeze, Shock and Ignite while Unbound 100% more Elemental Damage while Unbound"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamage",type="BASE",value=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 Cannot gain Unbound Fury while Unbound Your Hits always inflict Freeze, Shock and Ignite while Unbound 100% more while Unbound "} +c["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 Cannot gain Unbound Fury while Unbound Your Hits always inflict Freeze, Shock and Ignite while Unbound 100% more Elemental Damage while Unbound Limited to 1 Ascendancy Tattoo"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamage",type="BASE",value=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 Cannot gain Unbound Fury while Unbound Your Hits always inflict Freeze, Shock and Ignite while Unbound 100% more while Unbound Limited to 1 Ascendancy Tattoo "} c["Gain 1 Vaal Soul per second"]={{}," Soul per second "} c["Gain 1 Vaal Soul per second Limited to 1 Runegraft of the Soulwick"]={{}," Soul per second Limited to 1 Runegraft of the Soulwick "} c["Gain 1% of Cold Damage as Extra Fire Damage per 1% Chill Effect on Enemy"]={{[1]={[1]={actor="enemy",div=1,type="Multiplier",var="ChillEffect"},flags=0,keywordFlags=0,name="ColdDamageGainAsFire",type="BASE",value=1}},nil} @@ -8895,6 +8926,7 @@ c["Gain Added Chaos Damage equal to 25% of Ward"]={{[1]={[1]={percent=25,stat="W c["Gain Adrenaline for 20 seconds when you reach Low Life"]={{[1]={flags=0,keywordFlags=0,name="Condition:Adrenaline",type="FLAG",value=true}}," when you reach Low "} c["Gain Adrenaline for 20 seconds when you reach Low Life Recover 25% of Life when you gain Adrenaline"]={{[1]={flags=0,keywordFlags=0,name="Condition:Adrenaline",type="FLAG",value=true}}," when you reach Low Recover 25% of Life when you gain Adrenaline "} c["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"]={{[1]={flags=0,keywordFlags=0,name="Condition:Adrenaline",type="FLAG",value=true}}," when you reach Low Recover 25% of Life when you gain Adrenaline Remove all Ailments and Burning when you gain Adrenaline "} +c["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 Limited to 1 Ascendancy Tattoo"]={{[1]={flags=0,keywordFlags=0,name="Condition:Adrenaline",type="FLAG",value=true}}," when you reach Low Recover 25% of Life when you gain Adrenaline Remove all Ailments and Burning when you gain Adrenaline Limited to 1 Ascendancy Tattoo "} c["Gain Adrenaline for 3 seconds on Kill"]={{[1]={[1]={type="Condition",var="KilledRecently"},flags=0,keywordFlags=0,name="Condition:Adrenaline",type="FLAG",value=true}},nil} c["Gain Adrenaline for 3 seconds when Ward Breaks"]={{[1]={flags=0,keywordFlags=0,name="Condition:Adrenaline",type="FLAG",value=true}}," when Breaks "} c["Gain Adrenaline for 4 seconds when you reach Low Life"]={{[1]={flags=0,keywordFlags=0,name="Condition:Adrenaline",type="FLAG",value=true}}," when you reach Low "} @@ -8920,6 +8952,7 @@ c["Gain Defiance for 10 seconds on losing Life to an Enemy Hit, no"]={nil,"Defia c["Gain Defiance for 10 seconds on losing Life to an Enemy Hit, no more than once every 0.3 seconds"]={nil,"Defiance on losing Life to an Enemy Hit, no more than once every 0.3 seconds "} 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"]={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 "} 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 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 Limited to 1 Ascendancy Tattoo"]={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 Limited to 1 Ascendancy Tattoo "} 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} @@ -8962,8 +8995,10 @@ c["Gain a Flask Charge when you deal a Critical Strike while affected by Precisi c["Gain a Flask Charge when you deal a Critical Strike while at maximum Frenzy Charges"]={{[1]={[1]={stat="FrenzyCharges",thresholdStat="FrenzyChargesMax",type="StatThreshold"},flags=0,keywordFlags=0,name="FlaskChargeOnCritChance",type="BASE",value=100}},nil} c["Gain a Frenzy Charge each second while Moving"]={nil,"a Frenzy Charge each second "} c["Gain a Frenzy Charge each second while Moving +1 to Maximum Frenzy Charges"]={nil,"a Frenzy Charge each second +1 to Maximum Frenzy Charges "} +c["Gain a Frenzy Charge each second while Moving +1 to Maximum Frenzy Charges Limited to 1 Ascendancy Tattoo"]={nil,"a Frenzy Charge each second +1 to Maximum Frenzy Charges Limited to 1 Ascendancy Tattoo "} c["Gain a Frenzy Charge every 3 seconds while Moving"]={nil,"a Frenzy Charge every 3 seconds "} c["Gain a Frenzy Charge every 3 seconds while Moving Skills fire an additional Projectile"]={nil,"a Frenzy Charge every 3 seconds Skills fire an additional Projectile "} +c["Gain a Frenzy Charge every 3 seconds while Moving Skills fire an additional Projectile Limited to 1 Ascendancy Tattoo"]={nil,"a Frenzy Charge every 3 seconds Skills fire an additional Projectile Limited to 1 Ascendancy Tattoo "} c["Gain a Frenzy Charge every 3 seconds while Moving Skills fire an additional Projectile You and nearby Allies have Tailwind"]={{[1]={[1]={type="Condition",var="Moving"},[2]={includeTransfigured=true,skillName="Frenzy",type="SkillName"},flags=0,keywordFlags=0,name="Condition:Tailwind",type="FLAG",value=true}},"aCharge every 3 seconds Skills fire an additional You and nearby Allies have "} c["Gain a Frenzy Charge if an Attack Ignites an Enemy"]={nil,"a Frenzy Charge if an Attack Ignites an Enemy "} c["Gain a Frenzy Charge on Critical Strike"]={nil,"a Frenzy Charge "} @@ -8978,6 +9013,7 @@ c["Gain a Frenzy, Endurance, or Power Charge once per second while you are Stati c["Gain a Frenzy, Endurance, or Power Charge once per second while you are Stationary Lose all Frenzy, Endurance, and Power Charges when you Move"]={nil,"a Frenzy, Endurance, or Power Charge once per second Lose all Frenzy, Endurance, and Power Charges when you Move "} c["Gain a Power Charge after Spending a total of 200 Mana"]={nil,"a Power Charge after Spending a total of 200 Mana "} c["Gain a Power Charge after Spending a total of 200 Mana +1 to Maximum Power Charges"]={nil,"a Power Charge after Spending a total of 200 Mana +1 to Maximum Power Charges "} +c["Gain a Power Charge after Spending a total of 200 Mana +1 to Maximum Power Charges Limited to 1 Ascendancy Tattoo"]={nil,"a Power Charge after Spending a total of 200 Mana +1 to Maximum Power Charges Limited to 1 Ascendancy Tattoo "} c["Gain a Power Charge after Spending a total of 200 Mana Regenerate 2 Mana per Second per Power Charge"]={nil,"a Power Charge after Spending a total of 200 Mana Regenerate 2 Mana per Second "} c["Gain a Power Charge each second while Channelling a Spell"]={nil,"a Power Charge each second a Spell "} c["Gain a Power Charge every Second if you haven't lost Power Charges Recently"]={nil,"a Power Charge every Second if you haven't lost Power Charges Recently "} @@ -9229,6 +9265,7 @@ c["Hatred has no Reservation"]={{[1]={[1]={skillId="Hatred",type="SkillId"},[2]= c["Having a placed Banner does not prevent you gaining Valour"]={nil,"Having a placed Banner does not prevent you gaining Valour "} c["Having a placed Banner does not prevent you gaining Valour 40% increased Melee Damage"]={nil,"Having a placed Banner does not prevent you gaining Valour 40% increased Melee Damage "} c["Having a placed Banner does not prevent you gaining Valour Banner Skills have 100% increased Duration"]={nil,"Having a placed Banner does not prevent you gaining Valour Banner Skills have 100% increased Duration "} +c["Having a placed Banner does not prevent you gaining Valour Banner Skills have 100% increased Duration Limited to 1 Ascendancy Tattoo"]={nil,"Having a placed Banner does not prevent you gaining Valour Banner Skills have 100% increased Duration Limited to 1 Ascendancy Tattoo "} c["Herald Skills and Minions from Herald Skills deal 1% more Damage for every 1% of Maximum Life those Skills Reserve"]={{[1]={[1]={skillType=62,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={actor="parent",div=1,stat="LifeReservedPercent",type="PerStat"},flags=0,keywordFlags=0,name="Damage",type="MORE",value=1}}},[2]={[1]={div=1,stat="LifeReservedPercent",type="PerStat"},[2]={skillType=62,type="SkillType"},flags=0,keywordFlags=0,name="Damage",type="MORE",value=1}},nil} c["Herald Skills deal 20% increased Damage"]={{[1]={[1]={skillType=62,type="SkillType"},flags=0,keywordFlags=0,name="Damage",type="INC",value=20}},nil} c["Herald Skills deal 40% increased Damage"]={{[1]={[1]={skillType=62,type="SkillType"},flags=0,keywordFlags=0,name="Damage",type="INC",value=40}},nil} @@ -9541,6 +9578,7 @@ c["LevelReq: 70 Implicits: 2"]={nil,"LevelReq: 70 Implicits: 2 "} c["Life Flask Effects are not removed when Unreserved Life is Filled"]={{[1]={flags=0,keywordFlags=0,name="LifeFlaskEffectNotRemoved",type="FLAG",value=true}},nil} c["Life Flask Effects do not Queue"]={nil,"Life Flask Effects do not Queue "} c["Life Flask Effects do not Queue 50% less Life Recovery from Flasks"]={nil,"Life Flask Effects do not Queue 50% less Life Recovery from Flasks "} +c["Life Flask Effects do not Queue 50% less Life Recovery from Flasks Limited to 1 Ascendancy Tattoo"]={nil,"Life Flask Effects do not Queue 50% less Life Recovery from Flasks Limited to 1 Ascendancy Tattoo "} c["Life Flasks gain 1 Charge every 3 seconds"]={{[1]={flags=0,keywordFlags=0,name="LifeFlaskChargesGenerated",type="BASE",value=0.33333333333333}},nil} c["Life Flasks gain 2 Charges every 3 seconds"]={{[1]={flags=0,keywordFlags=0,name="LifeFlaskChargesGenerated",type="BASE",value=0.66666666666667}},nil} c["Life Flasks gain 3 Charges every 3 seconds"]={{[1]={flags=0,keywordFlags=0,name="LifeFlaskChargesGenerated",type="BASE",value=1}},nil} @@ -9627,6 +9665,7 @@ c["Linked targets share Endurance, Frenzy and Power Charges with you"]={nil,"Lin c["Links take twice as long to break"]={nil,"Links take twice as long to break "} c["Lose 0.1% of Life per second per Rage while you are not losing Rage"]={{[1]={[1]={percent=0.1,stat="Life",type="PercentStat"},[2]={type="Multiplier",var="RageEffect"},flags=0,keywordFlags=0,name="LifeDegen",type="BASE",value=1}},nil} c["Lose 1 Bark when Hit by Enemy Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="BASE",value=-1}}," Bark when Hit by Enemy "} +c["Lose 1 Bark when Hit by Enemy Spell Damage Limited to 1 Ascendancy Tattoo"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="BASE",value=-1}}," Bark when Hit by Enemy Limited to 1 Ascendancy Tattoo "} c["Lose 1 Fragile Regrowth each second"]={{}," Fragile Regrowth each second "} c["Lose 1% of Energy Shield on Kill"]={{[1]={[1]={percent=1,stat="EnergyShield",type="PercentStat"},flags=0,keywordFlags=0,name="EnergyShieldOnKill",type="BASE",value=-1}},nil} c["Lose 1% of Life on Kill"]={{[1]={[1]={percent=1,stat="Life",type="PercentStat"},flags=0,keywordFlags=0,name="LifeOnKill",type="BASE",value=-1}},nil} @@ -9659,6 +9698,7 @@ c["Lose a Power Charge each second Corrupted"]={nil,"Lose a Power Charge each se c["Lose a Power Charge each second if you have not Detonated Mines Recently"]={nil,"Lose a Power Charge each second if you have not Detonated Mines Recently "} c["Lose all Defiance when you reach 10 Defiance"]={nil,"Lose all Defiance when you reach 10 Defiance "} c["Lose all Defiance when you reach 10 Defiance Gain 3% of Missing Unreserved Life before being Hit by an Enemy Per Defiance"]={nil,"Lose all Defiance when you reach 10 Defiance Gain 3% of Missing Unreserved Life before being Hit by an Enemy Per Defiance "} +c["Lose all Defiance when you reach 10 Defiance Gain 3% of Missing Unreserved Life before being Hit by an Enemy Per Defiance Limited to 1 Ascendancy Tattoo"]={nil,"Lose all Defiance when you reach 10 Defiance Gain 3% of Missing Unreserved Life before being Hit by an Enemy Per Defiance Limited to 1 Ascendancy Tattoo "} c["Lose all Divine Charges when you gain Divinity"]={nil,"Lose all Divine Charges when you gain Divinity "} c["Lose all Divine Charges when you gain Divinity Nearby Allies' Action Speed cannot be modified to below Base Value"]={nil,"Lose all Divine Charges when you gain Divinity Nearby Allies' Action Speed cannot be modified to below Base Value "} c["Lose all Eaten Souls when you use a Flask"]={nil,"Lose all Eaten Souls when you use a Flask "} @@ -9667,12 +9707,14 @@ c["Lose all Endurance Charges on use Gain 1 Endurance Charge per Second during E 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 +4 to Maximum Fanatic Charges Limited to 1 Ascendancy Tattoo"]={nil,"Lose all Fanatic Charges on reaching Maximum Fanatic Charges +4 to Maximum Fanatic Charges Limited to 1 Ascendancy Tattoo "} 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 "} c["Lose all Frenzy Charges on reaching Maximum Frenzy Charges to make the next Bow Attack you perform fire that many additional Arrows +50% Global Critical Strike Multiplier while you have a Frenzy Charge"]={nil,"Lose all Frenzy Charges on reaching Maximum Frenzy Charges to make the next Bow Attack you perform fire that many additional Arrows +50% Global Critical Strike Multiplier while you have a Frenzy Charge "} c["Lose all Frenzy, Endurance, and Power Charges when you Move"]={nil,"Lose all Frenzy, Endurance, and Power Charges when you Move "} c["Lose all Gale Force when Hit"]={nil,"Lose all Gale Force when Hit "} +c["Lose all Gale Force when Hit Limited to 1 Ascendancy Tattoo"]={nil,"Lose all Gale Force when Hit Limited to 1 Ascendancy Tattoo "} c["Lose all Power Charges on Critical Strike"]={nil,"Lose all Power Charges on Critical Strike "} c["Lose all Power Charges on reaching Maximum Power Charges"]={nil,"Lose all Power Charges on reaching Maximum Power Charges "} c["Lose all Power Charges on reaching Maximum Power Charges Gain a Frenzy Charge on reaching Maximum Power Charges"]={nil,"Lose all Power Charges on reaching Maximum Power Charges Gain a Frenzy Charge on reaching Maximum Power Charges "} @@ -9802,6 +9844,7 @@ c["Melee Hits have 50% chance to Fortify Taunt on Hit"]={nil,"Melee Hits have 50 c["Melee Hits have 50% chance to Fortify Taunt on Hit 15% increased effect of Non-Curse Auras from your Skills"]={nil,"Melee Hits have 50% chance to Fortify Taunt on Hit 15% increased effect of Non-Curse Auras from your Skills "} c["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"]={nil,"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 "} c["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"]={nil,"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 "} +c["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 Limited to 1 Ascendancy Tattoo"]={nil,"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 Limited to 1 Ascendancy Tattoo "} c["Melee Hits which Stun Fortify"]={nil,"Melee Hits which Stun Fortify "} c["Melee Hits which Stun Fortify You have Onslaught while Fortified"]={nil,"Melee Hits which Stun Fortify You have Onslaught while Fortified "} c["Melee Hits which Stun have 10% chance to Fortify"]={nil,"Melee Hits which Stun have 10% chance to Fortify "} @@ -9826,6 +9869,7 @@ c["Mind Over Matter"]={{[1]={flags=0,keywordFlags=0,name="Keystone",type="LIST", c["Mine Damage Penetrates 10% Elemental Resistances"]={{[1]={flags=0,keywordFlags=8192,name="ElementalPenetration",type="BASE",value=10}},nil} c["Mine Damage Penetrates 4% Elemental Resistances"]={{[1]={flags=0,keywordFlags=8192,name="ElementalPenetration",type="BASE",value=4}},nil} c["Mines Hinder Enemies near them for 2 seconds when they Land"]={nil,"Mines Hinder Enemies near them for 2 seconds when they Land "} +c["Mines Hinder Enemies near them for 2 seconds when they Land Limited to 1 Ascendancy Tattoo"]={nil,"Mines Hinder Enemies near them for 2 seconds when they Land Limited to 1 Ascendancy Tattoo "} c["Mines can be Detonated an additional time"]={nil,"Mines can be Detonated an additional time "} c["Mines cannot be Damaged"]={nil,"Mines cannot be Damaged "} c["Mines have 20% increased Detonation Speed"]={nil,"Mines have 20% increased Detonation Speed "} @@ -10081,6 +10125,7 @@ c["Minions' Hits can only Kill Ignited Enemies"]={nil,"Minions' Hits can only Ki c["Mirage Archers are not attached to you"]={nil,"Mirage Archers are not attached to you "} c["Mirage Archers are not attached to you +2 to maximum number of Summoned Mirage Archers"]={nil,"Mirage Archers are not attached to you +2 to maximum number of Summoned Mirage Archers "} c["Mirage Archers are not attached to you +2 to maximum number of Summoned Mirage Archers Cannot Summon Mirage Archers while near your Mirage Archers"]={nil,"Mirage Archers are not attached to you +2 to maximum number of Summoned Mirage Archers Cannot Summon Mirage Archers while near your Mirage Archers "} +c["Mirage Archers are not attached to you +2 to maximum number of Summoned Mirage Archers Cannot Summon Mirage Archers while near your Mirage Archers Limited to 1 Ascendancy Tattoo"]={nil,"Mirage Archers are not attached to you +2 to maximum number of Summoned Mirage Archers Cannot Summon Mirage Archers while near your Mirage Archers Limited to 1 Ascendancy Tattoo "} c["Modifiers to Attributes instead apply to Omniscience"]={{[1]={flags=0,keywordFlags=0,name="Omniscience",type="FLAG",value=true}},nil} c["Modifiers to Chance to Avoid being Shocked apply to all Elemental Ailments"]={{[1]={flags=0,keywordFlags=0,name="ShockAvoidAppliesToElementalAilments",type="FLAG",value=true}},nil} c["Modifiers to Chance to Suppress Spell Damage also apply to Chance to Avoid Elemental Ailments at 50% of their Value"]={{[1]={flags=0,keywordFlags=0,name="SpellSuppressionAppliesToAilmentAvoidancePercent",type="BASE",value=50},[2]={flags=0,keywordFlags=0,name="SpellSuppressionAppliesToAilmentAvoidance",type="FLAG",value=true}},nil} @@ -10353,6 +10398,7 @@ c["Projectile Attack Skills have 25% increased Critical Strike Chance"]={{[1]={[ c["Projectile Attack Skills have 50% increased Critical Strike Chance"]={{[1]={[1]={skillType=47,type="SkillType"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=50}},nil} c["Projectile Attack Skills have 60% increased Critical Strike Chance"]={{[1]={[1]={skillType=47,type="SkillType"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=60}},nil} c["Projectile Barrages have no spread"]={nil,"Projectile Barrages have no spread "} +c["Projectile Barrages have no spread Limited to 1 Ascendancy Tattoo"]={nil,"Projectile Barrages have no spread Limited to 1 Ascendancy Tattoo "} c["Projectile Barrages have no spread You take no Extra Damage from Critical Strikes while Elusive"]={nil,"Projectile Barrages have no spread You take no Extra Damage from Critical Strikes while Elusive "} c["Projectiles Chain +1 times while you have Phasing"]={{[1]={[1]={type="Condition",var="Phasing"},flags=1024,keywordFlags=0,name="ChainCountMax",type="BASE",value=1}},nil} c["Projectiles Chain an additional time"]={{[1]={flags=1024,keywordFlags=0,name="ChainCountMax",type="BASE",value=1}},nil} @@ -10368,6 +10414,7 @@ c["Projectiles Return to you"]={nil,"Return to you "} c["Projectiles Return to you Projectiles are fired in random directions"]={nil,"Return to you Projectiles are fired in random directions "} c["Projectiles Return to you from final target"]={nil,"Return to you from final target "} c["Projectiles are fired in random directions"]={nil,"fired in random directions "} +c["Projectiles are fired in random directions Limited to 1 Ascendancy Tattoo"]={nil,"fired in random directions Limited to 1 Ascendancy Tattoo "} c["Projectiles cannot Pierce, Fork or Chain"]={{[1]={flags=1024,keywordFlags=0,name="CannotPierce",type="FLAG",value=true},[2]={flags=1024,keywordFlags=0,name="CannotChain",type="FLAG",value=true},[3]={flags=1024,keywordFlags=0,name="CannotFork",type="FLAG",value=true}},nil} c["Projectiles cannot collide with Enemies in Close Range"]={nil,"cannot collide with Enemies in Close Range "} c["Projectiles cannot collide with Enemies in Close Range Far Shot"]={nil,"cannot collide with Enemies in Close Range Far Shot "} @@ -10398,11 +10445,13 @@ c["Projectiles have 20% chance to be able to Chain when colliding with terrain"] c["Projectiles have 20% chance to be able to Chain when colliding with terrain Projectiles gain Damage as they travel farther, dealing up"]={{[1]={flags=1024,keywordFlags=0,name="ChainCountMax",type="BASE",value=20}}," to be able to when colliding with terrain Projectiles gain Damage as they travel farther, dealing up "} c["Projectiles have 25% chance for an additional Projectile when Forking"]={{[1]={flags=1024,keywordFlags=0,name="ProjectileCount",type="BASE",value=25}}," for an additional when Forking "} c["Projectiles have 30% chance to be able to Chain when colliding with terrain"]={{[1]={flags=1024,keywordFlags=0,name="ChainCountMax",type="BASE",value=30}}," to be able to when colliding with terrain "} +c["Projectiles have 30% chance to be able to Chain when colliding with terrain Limited to 1 Ascendancy Tattoo"]={{[1]={flags=1024,keywordFlags=0,name="ChainCountMax",type="BASE",value=30}}," to be able to when colliding with terrain Limited to 1 Ascendancy Tattoo "} c["Projectiles have 4% chance to be able to Chain when colliding with terrain per"]={{[1]={flags=1024,keywordFlags=0,name="ChainCountMax",type="BASE",value=4}}," to be able to when colliding with terrain per "} c["Projectiles have 4% chance to be able to Chain when colliding with terrain per Searching Eye Jewel affecting you, up to a maximum of 20%"]={{[1]={[1]={limit=20,limitTotal=true,type="Multiplier",var="SearchingEyeJewel"},flags=1024,keywordFlags=0,name="ChainCountMax",type="BASE",value=4}}," to be able to when colliding with terrain "} 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 have 50% chance to Return to you Projectiles are fired in random directions Limited to 1 Ascendancy Tattoo"]={{[1]={flags=1024,keywordFlags=0,name="ProjectileCount",type="BASE",value=50}}," to Return to you are fired in random directions Limited to 1 Ascendancy Tattoo "} 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} @@ -10465,6 +10514,7 @@ c["Recoup 12% of Damage Taken by your Totems as Life"]={nil,"Recoup 12% of Damag c["Recoup 12% of Damage Taken by your Totems as Life Totems Taunt Enemies around them for 2 seconds when Summoned"]={nil,"Recoup 12% of Damage Taken by your Totems as Life Totems Taunt Enemies around them for 2 seconds when Summoned "} c["Recoup Effects instead occur over 3 seconds"]={{[1]={flags=0,keywordFlags=0,name="3SecondRecoup",type="FLAG",value=true}},nil} c["Recover 0.5% of Life per Poison affecting Enemies you Kill"]={nil,"Recover 0.5% of Life per Poison affecting Enemies you Kill "} +c["Recover 0.5% of Life per Poison affecting Enemies you Kill Limited to 1 Ascendancy Tattoo"]={nil,"Recover 0.5% of Life per Poison affecting Enemies you Kill Limited to 1 Ascendancy Tattoo "} c["Recover 1% of Energy Shield on Kill"]={{[1]={[1]={percent=1,stat="EnergyShield",type="PercentStat"},flags=0,keywordFlags=0,name="EnergyShieldOnKill",type="BASE",value=1}},nil} c["Recover 1% of Energy Shield on Kill for each different type of Mastery you have Allocated"]={{[1]={[1]={percent=1,stat="EnergyShield",type="PercentStat"},[2]={type="Multiplier",var="AllocatedMasteryType"},flags=0,keywordFlags=0,name="EnergyShieldOnKill",type="BASE",value=1}},nil} c["Recover 1% of Life on Kill"]={{[1]={[1]={percent=1,stat="Life",type="PercentStat"},flags=0,keywordFlags=0,name="LifeOnKill",type="BASE",value=1}},nil} @@ -10508,6 +10558,7 @@ c["Recover 20% of Life on Rampage Kills grant an additional Vaal Soul if you hav c["Recover 200 Life when you Suppress Spell Damage"]={{[1]={flags=0,keywordFlags=0,name="LifeOnSuppress",type="BASE",value=200}},nil} c["Recover 25% of Life when you gain Adrenaline"]={nil,"Recover 25% of Life when you gain Adrenaline "} c["Recover 25% of Life when you gain Adrenaline Remove all Ailments and Burning when you gain Adrenaline"]={nil,"Recover 25% of Life when you gain Adrenaline Remove all Ailments and Burning when you gain Adrenaline "} +c["Recover 25% of Life when you gain Adrenaline Remove all Ailments and Burning when you gain Adrenaline Limited to 1 Ascendancy Tattoo"]={nil,"Recover 25% of Life when you gain Adrenaline Remove all Ailments and Burning when you gain Adrenaline Limited to 1 Ascendancy Tattoo "} c["Recover 250 Life when you Block"]={{[1]={flags=0,keywordFlags=0,name="LifeOnBlock",type="BASE",value=250}},nil} c["Recover 3% of Energy Shield when you Kill an Enemy during Effect"]={{[1]={[1]={percent=3,stat="EnergyShield",type="PercentStat"},[2]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="EnergyShieldOnKill",type="BASE",value=1}},nil} c["Recover 3% of Energy Shield when you lose a Spirit Charge"]={nil,"Recover 3% of Energy Shield when you lose a Spirit Charge "} @@ -10794,6 +10845,7 @@ c["Remove a random Damaging Ailment when Ward is Restored"]={nil,"Remove a rando c["Remove a random Elemental Ailment when you use a Mana Flask"]={nil,"Remove a random Elemental Ailment when you use a Mana Flask "} c["Remove a random Non-Elemental Ailment when you use a Life Flask"]={nil,"Remove a random Non-Elemental Ailment when you use a Life Flask "} c["Remove all Ailments and Burning when you gain Adrenaline"]={nil,"Remove all Ailments and Burning when you gain Adrenaline "} +c["Remove all Ailments and Burning when you gain Adrenaline Limited to 1 Ascendancy Tattoo"]={nil,"Remove all Ailments and Burning when you gain Adrenaline Limited to 1 Ascendancy Tattoo "} c["Remove all Damaging Ailments when you Warcry"]={nil,"Remove all Damaging Ailments when you Warcry "} c["Remove an Ailment when you use a Flask if all Equipped Items are Elder Items"]={nil,"Remove an Ailment when you use a Flask if all Equipped Items are Elder Items "} c["Removed life is Regenerated as Energy Shield over 2 seconds"]={nil,"Removed life is Regenerated as Energy Shield over 2 seconds "} @@ -10807,10 +10859,12 @@ c["Removes Bleeding when you use a Flask"]={nil,"Removes Bleeding when you use a c["Removes Bleeding when you use a Flask Every 4 seconds, remove Curses and Ailments from you"]={nil,"Removes Bleeding when you use a Flask Every 4 seconds, remove Curses and Ailments from you "} c["Removes Bleeding when you use a Flask Flasks gain 3 Charges every 3 seconds"]={nil,"Removes Bleeding when you use a Flask Flasks gain 3 Charges every 3 seconds "} c["Removes Bleeding when you use a Flask Flasks gain 3 Charges every 3 seconds 25% chance for Flasks you use to not consume Charges"]={nil,"Removes Bleeding when you use a Flask Flasks gain 3 Charges every 3 seconds 25% chance for Flasks you use to not consume Charges "} +c["Removes Bleeding when you use a Flask Flasks gain 3 Charges every 3 seconds 25% chance for Flasks you use to not consume Charges Limited to 1 Ascendancy Tattoo"]={nil,"Removes Bleeding when you use a Flask Flasks gain 3 Charges every 3 seconds 25% chance for Flasks you use to not consume Charges Limited to 1 Ascendancy Tattoo "} c["Removes Elemental Ailments on Rampage"]={nil,"Removes Elemental Ailments on Rampage "} c["Removes Elemental Ailments on Rampage Gain Immunity to Physical Damage for 1.5 seconds on Rampage"]={nil,"Removes Elemental Ailments on Rampage Gain Immunity to Physical Damage for 1.5 seconds on Rampage "} c["Removes Elemental Ailments when you use a Flask"]={nil,"Removes Elemental Ailments when you use a Flask "} c["Removes Elemental Ailments when you use a Flask 50% chance for Flasks you use to not consume Charges"]={nil,"Removes Elemental Ailments when you use a Flask 50% chance for Flasks you use to not consume Charges "} +c["Removes Elemental Ailments when you use a Flask 50% chance for Flasks you use to not consume Charges Limited to 1 Ascendancy Tattoo"]={nil,"Removes Elemental Ailments when you use a Flask 50% chance for Flasks you use to not consume Charges Limited to 1 Ascendancy Tattoo "} c["Removes all Burning when used"]={{},nil} c["Removes all Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="MORE",value=-100}},nil} c["Removes all but one Life on use"]={nil,"Removes all but one Life on use "} @@ -11176,6 +11230,7 @@ c["Retaliation Skills become Usable for 20% longer"]={nil,"Retaliation Skills be c["Retaliation Skills become Usable for 30% longer"]={nil,"Retaliation Skills become Usable for 30% longer "} c["Retaliation Skills become Usable for an additional 2 seconds"]={nil,"Retaliation Skills become Usable for an additional 2 seconds "} c["Retaliation Skills become Usable for an additional 2 seconds 50% chance for used Retaliation Skills to remain Usable and not consume a Cooldown Use"]={nil,"Retaliation Skills become Usable for an additional 2 seconds 50% chance for used Retaliation Skills to remain Usable and not consume a Cooldown Use "} +c["Retaliation Skills become Usable for an additional 2 seconds 50% chance for used Retaliation Skills to remain Usable and not consume a Cooldown Use Limited to 1 Ascendancy Tattoo"]={nil,"Retaliation Skills become Usable for an additional 2 seconds 50% chance for used Retaliation Skills to remain Usable and not consume a Cooldown Use Limited to 1 Ascendancy Tattoo "} c["Retaliation Skills deal 100% increased Damage"]={{[1]={[1]={skillType=132,type="SkillType"},flags=0,keywordFlags=0,name="Damage",type="INC",value=100}},nil} c["Retaliation Skills deal 12% increased Damage"]={{[1]={[1]={skillType=132,type="SkillType"},flags=0,keywordFlags=0,name="Damage",type="INC",value=12}},nil} c["Retaliation Skills deal 15% increased Damage"]={{[1]={[1]={skillType=132,type="SkillType"},flags=0,keywordFlags=0,name="Damage",type="INC",value=15}},nil} @@ -11930,6 +11985,7 @@ c["Strength's Damage Bonus instead grants 3% increased Melee Physical Damage per c["Strength's Damage bonus applies to Projectile Attack Damage as well as Melee Damage"]={{[1]={flags=0,keywordFlags=0,name="IronGrip",type="FLAG",value=true}},nil} c["Strength's Damage bonus applies to all Spell Damage as well"]={{[1]={flags=0,keywordFlags=0,name="IronWill",type="FLAG",value=true}},nil} c["Strike Skills also target the previous location they were used"]={nil,"Strike Skills also target the previous location they were used "} +c["Strike Skills also target the previous location they were used Limited to 1 Ascendancy Tattoo"]={nil,"Strike Skills also target the previous location they were used Limited to 1 Ascendancy Tattoo "} c["Strike Skills which target additional Enemies can do so from 40% further away"]={nil,"Strike Skills which target additional Enemies can do so from 40% further away "} c["Stun Threshold is based on 500% of your Mana instead of Life"]={{[1]={flags=0,keywordFlags=0,name="StunThresholdBasedOnManaInsteadOfLife",type="FLAG",value=true},[2]={flags=0,keywordFlags=0,name="StunThresholdManaPercent",type="BASE",value=500}},nil} c["Stun Threshold is based on Energy Shield instead of Life"]={{[1]={flags=0,keywordFlags=0,name="StunThresholdBasedOnEnergyShieldInsteadOfLife",type="FLAG",value=true},[2]={flags=0,keywordFlags=0,name="StunThresholdEnergyShieldPercent",type="BASE",value=100}},nil} @@ -11980,6 +12036,7 @@ c["Summoned Golems are Aggressive"]={nil,"Summoned Golems are Aggressive "} c["Summoned Golems are Immune to Elemental Damage"]={{[1]={[1]={skillType=61,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Elemancer",type="FLAG",value=true}}},[2]={[1]={skillType=61,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="ElementalDamageTaken",type="MORE",value=-100}}}},nil} c["Summoned Golems are Resummoned 4 seconds after being Killed"]={nil,"Summoned Golems are Resummoned 4 seconds after being Killed "} c["Summoned Golems are Resummoned 4 seconds after being Killed +2 to maximum number of Summoned Golems"]={nil,"Summoned Golems are Resummoned 4 seconds after being Killed +2 to maximum number of Summoned Golems "} +c["Summoned Golems are Resummoned 4 seconds after being Killed +2 to maximum number of Summoned Golems Limited to 1 Ascendancy Tattoo"]={nil,"Summoned Golems are Resummoned 4 seconds after being Killed +2 to maximum number of Summoned Golems Limited to 1 Ascendancy Tattoo "} c["Summoned Golems have 15% increased Cooldown Recovery Rate"]={{[1]={[1]={skillType=61,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="CooldownRecovery",type="INC",value=15}}}},nil} c["Summoned Golems have 38% increased Cooldown Recovery Rate"]={{[1]={[1]={skillType=61,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="CooldownRecovery",type="INC",value=38}}}},nil} c["Summoned Golems have 45% increased Cooldown Recovery Rate"]={{[1]={[1]={skillType=61,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="CooldownRecovery",type="INC",value=45}}}},nil} @@ -12064,8 +12121,10 @@ 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 "} c["Taunt on Hit 15% increased effect of Non-Curse Auras from your Skills Your Hits permanently Intimidate Enemies that are on Full Life"]={nil,"Taunt on Hit 15% increased effect of Non-Curse Auras from your Skills Your Hits permanently Intimidate Enemies that are on Full Life "} c["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"]={nil,"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 "} +c["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 Limited to 1 Ascendancy Tattoo"]={nil,"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 Limited to 1 Ascendancy Tattoo "} c["Taunt on Hit Enemies Taunted by you take 15% increased Damage"]={nil,"Taunt on Hit Enemies Taunted by you take 15% increased Damage "} c["Taunt on Hit Enemies Taunted by you take 15% increased Damage Enemies Taunted by you cannot Evade Attacks"]={nil,"Taunt on Hit Enemies Taunted by you take 15% increased Damage Enemies Taunted by you cannot Evade Attacks "} +c["Taunt on Hit Enemies Taunted by you take 15% increased Damage Enemies Taunted by you cannot Evade Attacks Limited to 1 Ascendancy Tattoo"]={nil,"Taunt on Hit Enemies Taunted by you take 15% increased Damage Enemies Taunted by you cannot Evade Attacks Limited to 1 Ascendancy Tattoo "} c["Taunts nearby Enemies on use"]={nil,"Taunts nearby Enemies on use "} c["Taunts nearby Enemies on use 23% reduced Duration"]={nil,"Taunts nearby Enemies on use 23% reduced Duration "} c["Taunts nearby Enemies on use Gain 3 Charges when you are Hit by an Enemy"]={nil,"Taunts nearby Enemies on use Gain 3 Charges when you are Hit by an Enemy "} @@ -12089,6 +12148,7 @@ c["This Weapon's Critical Strike Chance is 100%"]={{[1]={flags=0,keywordFlags=0, c["This item can be anointed by Cassia"]={{},nil} c["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"]={nil,"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 "} c["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"]={nil,"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 "} +c["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 Limited to 1 Ascendancy Tattoo"]={nil,"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 Limited to 1 Ascendancy Tattoo "} c["Tincture Effects also apply to Ranged Weapons"]={{[1]={flags=0,keywordFlags=0,name="TinctureRangedWeapons",type="FLAG",value=true}},nil} c["Tinctures applied to you have 10% increased Effect"]={{[1]={[1]={actor="player",type="ActorCondition"},flags=0,keywordFlags=0,name="TinctureEffect",type="INC",value=10}},nil} c["Tinctures applied to you have 10% reduced Mana Burn rate"]={{[1]={[1]={actor="player",type="ActorCondition"},flags=0,keywordFlags=0,name="TinctureManaBurnRate",type="INC",value=-10}},nil} @@ -12370,9 +12430,11 @@ c["When you Kill an Ignited Enemy, inflict an equivalent Ignite on each nearby E c["When you Warcry, you and nearby Allies gain Onslaught for 4 seconds"]={{[1]={[1]={type="Condition",var="UsedWarcryRecently"},flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="Onslaught",type="FLAG",value=true}}}},nil} c["When you kill a Poisoned Enemy during any Flask Effect, Enemies within 1.5 metres are Poisoned"]={nil,"When you kill a Poisoned Enemy during any Flask Effect, Enemies within 1.5 metres are Poisoned "} c["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"]={nil,"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 "} +c["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 Limited to 1 Ascendancy Tattoo"]={nil,"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 Limited to 1 Ascendancy Tattoo "} c["When you leave your Banner's Area, recover 25% of the Valour consumed for that Banner"]={nil,"When you leave your Banner's Area, recover 25% of the Valour consumed for that Banner "} c["When you leave your Banner's Area, recover 25% of the Valour consumed for that Banner Recover 5% of Life when you use a Flask"]={nil,"When you leave your Banner's Area, recover 25% of the Valour consumed for that Banner Recover 5% of Life when you use a Flask "} c["When you leave your Banner's Area, recover 30% of the Valour consumed for that Banner"]={nil,"When you leave your Banner's Area, recover 30% of the Valour consumed for that Banner "} +c["When you leave your Banner's Area, recover 30% of the Valour consumed for that Banner Limited to 1 Ascendancy Tattoo"]={nil,"When you leave your Banner's Area, recover 30% of the Valour consumed for that Banner Limited to 1 Ascendancy Tattoo "} c["When you lose Temporal Chains you gain maximum Rage"]={{[1]={flags=0,keywordFlags=0,name="Condition:CanGainRage",type="FLAG",value=true}},nil} c["When you take a Savage Hit, lose Baryatic Tension to recover that much Life, up to maximum"]={nil,"When you take a Savage Hit, lose Baryatic Tension to recover that much Life, up to maximum "} c["When your Hits Impale Enemies, also Impale other Enemies near them"]={nil,"When your Hits Impale Enemies, also Impale other Enemies near them "} @@ -12380,6 +12442,7 @@ c["When your Hits Impale Enemies, also Impale other Enemies near them Inflict 5 c["When your Hits Impale Enemies, also Impale other Enemies near them 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,"When your Hits Impale Enemies, also Impale other Enemies near them 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["When your Hits Impale Enemies, also Impale other Enemies near them 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,"When your Hits Impale Enemies, also Impale other Enemies near them 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["When your Traps Trigger, your nearby Traps also Trigger"]={nil,"When your Traps Trigger, your nearby Traps also Trigger "} +c["When your Traps Trigger, your nearby Traps also Trigger Limited to 1 Ascendancy Tattoo"]={nil,"When your Traps Trigger, your nearby Traps also Trigger Limited to 1 Ascendancy Tattoo "} c["While Minions have Energy Shield, their Hits Ignore Monster Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={stat="EnergyShield",threshold=1,type="StatThreshold"},flags=0,keywordFlags=0,name="IgnoreElementalResistances",type="FLAG",value=true}}}},nil} c["While affected by Glorious Madness, inflict Mania on nearby Enemies every second"]={{[1]={[1]={type="Condition",var="AffectedByGloriousMadness"},flags=0,keywordFlags=0,name="Condition:CanInflictMania",type="FLAG",value=true},[2]={[1]={type="Condition",var="AffectedByGloriousMadness"},flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Condition:AfflictedByMania",type="FLAG",value=true}}}},nil} c["While at maximum Frenzy Charges, Attacks Poison Enemies"]={{[1]={[1]={stat="FrenzyCharges",thresholdStat="FrenzyChargesMax",type="StatThreshold"},flags=1,keywordFlags=0,name="PoisonChance",type="BASE",value=100}},nil} @@ -12782,6 +12845,7 @@ c["Your Lucky or Unlucky effects are instead Unexciting"]={{[1]={flags=0,keyword c["Your Lucky or Unlucky effects use the best or"]={nil,"Your Lucky or Unlucky effects use the best or "} c["Your Lucky or Unlucky effects use the best or worst from three rolls instead of two"]={{[1]={flags=0,keywordFlags=0,name="ExtremeLuck",type="FLAG",value=true}},nil} c["Your Mark Transfers to another Enemy when Marked Enemy dies"]={nil,"Your Mark Transfers to another Enemy when Marked Enemy dies "} +c["Your Mark Transfers to another Enemy when Marked Enemy dies Limited to 1 Ascendancy Tattoo"]={nil,"Your Mark Transfers to another Enemy when Marked Enemy dies Limited to 1 Ascendancy Tattoo "} c["Your Maximum Endurance Charges is equal to your Maximum Frenzy Charges"]={{[1]={flags=0,keywordFlags=0,name="MaximumEnduranceChargesIsMaximumFrenzyCharges",type="FLAG",value=true}},nil} c["Your Maximum Frenzy Charges is equal to your Maximum Power Charges"]={{[1]={flags=0,keywordFlags=0,name="MaximumFrenzyChargesIsMaximumPowerCharges",type="FLAG",value=true}},nil} c["Your Maximum Resistances are 71%"]={{[1]={flags=0,keywordFlags=0,name="FireResistMax",type="OVERRIDE",value=71},[2]={flags=0,keywordFlags=0,name="ColdResistMax",type="OVERRIDE",value=71},[3]={flags=0,keywordFlags=0,name="LightningResistMax",type="OVERRIDE",value=71},[4]={flags=0,keywordFlags=0,name="ChaosResistMax",type="OVERRIDE",value=71}},nil} @@ -12842,6 +12906,7 @@ 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["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 Limited to 1 Ascendancy Tattoo"]={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 Limited to 1 Ascendancy Tattoo "} 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 "} diff --git a/src/Data/TattooPassives.lua b/src/Data/TattooPassives.lua index 35562440d0c..f31a2bcf4a3 100644 --- a/src/Data/TattooPassives.lua +++ b/src/Data/TattooPassives.lua @@ -13,26 +13,6 @@ return { }, }, ["nodes"] = { - [""] = { - ["MaximumConnected"] = 100, - ["MinimumConnected"] = 0, - ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", - ["dn"] = "", - ["icon"] = "", - ["id"] = "AscendancyAssassin19", - ["isTattoo"] = true, - ["ks"] = false, - ["m"] = false, - ["not"] = false, - ["overrideType"] = "AscendancyTattooShadow", - ["sd"] = { - [1] = "Limited to 1 Ascendancy Tattoo", - }, - ["stats"] = { - }, - ["targetType"] = "Keystone", - ["targetValue"] = "", - }, ["Acrobatics"] = { ["MaximumConnected"] = 100, ["MinimumConnected"] = 0, @@ -91,6 +71,34 @@ return { ["targetType"] = "Keystone", ["targetValue"] = "", }, + ["Ancestral Fury"] = { + ["MaximumConnected"] = 100, + ["MinimumConnected"] = 0, + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", + ["dn"] = "Ancestral Fury", + ["icon"] = "Art/2DArt/SkillIcons/passives/Berserker/Blitz.png", + ["id"] = "AscendancyBerserker10", + ["isTattoo"] = true, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["overrideType"] = "AscendancyTattooMarauder", + ["sd"] = { + [1] = "Strike Skills also target the previous location they were used", + [2] = "Limited to 1 Ascendancy Tattoo", + }, + ["stats"] = { + ["melee_strike_skill_strike_previous_location"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 9212, + }, + }, + ["targetType"] = "Ascendancy Notable", + ["targetValue"] = "", + }, ["Ancestral Tattoo of Bloodlines"] = { ["MaximumConnected"] = 100, ["MinimumConnected"] = 0, @@ -100,7 +108,6 @@ return { ["id"] = "UniqueSmallNode1", ["isTattoo"] = true, ["ks"] = false, - ["legacy"] = true, ["m"] = false, ["not"] = false, ["overrideType"] = "UnknownTattoo", @@ -119,6 +126,42 @@ return { ["targetType"] = "Small Attribute", ["targetValue"] = "", }, + ["Arcane Blessing"] = { + ["MaximumConnected"] = 100, + ["MinimumConnected"] = 0, + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", + ["dn"] = "Arcane Blessing", + ["icon"] = "Art/2DArt/SkillIcons/passives/Hierophant/ArcaneSurge.png", + ["id"] = "AscendancyHeirophant14", + ["isTattoo"] = true, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["overrideType"] = "AscendancyTattooTemplar", + ["sd"] = { + [1] = "Arcane Surge also grants 20% more Spell Damage to you", + [2] = "Gain Arcane Surge when you or your Totems Hit an Enemy with a Spell", + [3] = "Limited to 1 Ascendancy Tattoo", + }, + ["stats"] = { + ["arcane_surge_on_you_spell_damage_+%_final_from_hierophant"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 20, + ["min"] = 20, + ["statOrder"] = 4708, + }, + ["gain_arcane_surge_on_spell_hit_by_you_or_your_totems"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 6732, + }, + }, + ["targetType"] = "Ascendancy Notable", + ["targetValue"] = "", + }, ["Arrow Dancing"] = { ["MaximumConnected"] = 100, ["MinimumConnected"] = 0, @@ -176,1773 +219,6207 @@ return { ["targetType"] = "Keystone", ["targetValue"] = "", }, - ["Avatar of Fire"] = { + ["Aspect of Carnage"] = { ["MaximumConnected"] = 100, ["MinimumConnected"] = 0, ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", - ["dn"] = "Avatar of Fire", - ["icon"] = "Art/2DArt/SkillIcons/passives/KeystoneAvatarOfFire.png", - ["id"] = "avatar_of_fire1543", + ["dn"] = "Aspect of Carnage", + ["icon"] = "Art/2DArt/SkillIcons/passives/Berserker/AspectOfCarnage.png", + ["id"] = "AscendancyBerserker12", ["isTattoo"] = true, - ["ks"] = true, + ["ks"] = false, ["m"] = false, - ["not"] = false, - ["overrideType"] = "KeystoneTattoo", + ["not"] = true, + ["overrideType"] = "AscendancyTattooMarauder", ["sd"] = { - [1] = "50% of Physical, Cold and Lightning Damage Converted to Fire Damage", - [2] = "Deal no Non-Fire Damage", - [3] = "Limited to 1 Keystone Tattoo", + [1] = "10% increased Damage taken", + [2] = "40% more Damage", + [3] = "Limited to 1 Ascendancy Tattoo", }, ["stats"] = { - ["keystone_avatar_of_fire"] = { + ["base_damage_taken_+%"] = { ["fmt"] = "d", ["index"] = 1, - ["max"] = 1, - ["min"] = 1, - ["statOrder"] = 10876, + ["max"] = 10, + ["min"] = 10, + ["statOrder"] = 2238, + }, + ["berserker_damage_+%_final"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 40, + ["min"] = 40, + ["statOrder"] = 4054, }, }, - ["targetType"] = "Keystone", + ["targetType"] = "Ascendancy Notable", ["targetValue"] = "", }, - ["Blood Magic"] = { + ["Assassin"] = { ["MaximumConnected"] = 100, ["MinimumConnected"] = 0, ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", - ["dn"] = "Blood Magic", - ["icon"] = "Art/2DArt/SkillIcons/passives/KeystoneBloodMagic.png", - ["id"] = "blood_magic1143", + ["dn"] = "Assassin", + ["icon"] = "Art/2DArt/SkillIcons/passives/Ascendants/Assassin.png", + ["id"] = "AscendancyAscendant46", ["isTattoo"] = true, - ["ks"] = true, + ["ks"] = false, ["m"] = false, - ["not"] = false, - ["overrideType"] = "KeystoneTattoo", + ["not"] = true, + ["overrideType"] = "AscendancyTattooScion", ["sd"] = { - [1] = "Removes all mana", - [2] = "10% more maximum Life", - [3] = "Skills Cost Life instead of Mana", - [4] = "Skills Reserve Life instead of Mana", - [5] = "Limited to 1 Keystone Tattoo", + [1] = "+0.75% to Critical Strike Chance", + [2] = "10% chance to gain a Power Charge on Critical Strike", + [3] = "10% chance to gain Elusive on Critical Strike", + [4] = "Damage cannot be Reflected", + [5] = "Limited to 1 Ascendancy Tattoo", }, ["stats"] = { - ["keystone_blood_magic"] = { + ["add_power_charge_on_critical_strike_%"] = { ["fmt"] = "d", ["index"] = 1, + ["max"] = 10, + ["min"] = 10, + ["statOrder"] = 1830, + }, + ["additional_base_critical_strike_chance"] = { + ["fmt"] = "g", + ["index"] = 2, + ["max"] = 0.75, + ["min"] = 0.75, + ["statOrder"] = 1457, + }, + ["damage_cannot_be_reflected"] = { + ["fmt"] = "d", + ["index"] = 3, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 10890, + ["statOrder"] = 6021, + }, + ["gain_elusive_on_crit_%_chance"] = { + ["fmt"] = "d", + ["index"] = 4, + ["max"] = 10, + ["min"] = 10, + ["statOrder"] = 4281, }, }, - ["targetType"] = "Keystone", + ["targetType"] = "Ascendancy Notable", ["targetValue"] = "", }, - ["Bloodsoaked Blade"] = { + ["Augury of Penitence"] = { ["MaximumConnected"] = 100, ["MinimumConnected"] = 0, ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", - ["dn"] = "Bloodsoaked Blade", - ["icon"] = "Art/2DArt/SkillIcons/passives/TinctureKeystone1.png", - ["id"] = "keystone_bloodsoaked_blade", + ["blockingPassive"] = { + [13763] = true, + }, + ["dn"] = "Augury of Penitence", + ["icon"] = "Art/2DArt/SkillIcons/passives/Inquistitor/ElementalDomination.png", + ["id"] = "AscendancyInquisitor9", ["isTattoo"] = true, - ["ks"] = true, + ["ks"] = false, ["m"] = false, - ["not"] = false, - ["overrideType"] = "KeystoneTattoo", + ["not"] = true, + ["overrideType"] = "AscendancyTattooTemplar", ["sd"] = { - [1] = "Tinctures inflict Weeping Wounds instead of Mana Burn", - [2] = "Effects that interact with Mana Burn interact with Weeping Wounds instead", - [3] = "Limited to 1 Keystone Tattoo", + [1] = "Limited to 1 Ascendancy Tattoo", }, ["stats"] = { - ["keystone_tinctures_drain_life"] = { - ["fmt"] = "d", - ["index"] = 1, - ["max"] = 1, - ["min"] = 1, - ["statOrder"] = 10971, - }, }, - ["targetType"] = "Keystone", + ["targetType"] = "Ascendancy Notable", ["targetValue"] = "", }, - ["Call to Arms"] = { + ["Avatar of Fire"] = { ["MaximumConnected"] = 100, ["MinimumConnected"] = 0, ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", - ["dn"] = "Call to Arms", - ["icon"] = "Art/2DArt/SkillIcons/passives/CallToArms.png", - ["id"] = "call_to_arms_keystone2691", + ["dn"] = "Avatar of Fire", + ["icon"] = "Art/2DArt/SkillIcons/passives/KeystoneAvatarOfFire.png", + ["id"] = "avatar_of_fire1543", ["isTattoo"] = true, ["ks"] = true, ["m"] = false, ["not"] = false, ["overrideType"] = "KeystoneTattoo", ["sd"] = { - [1] = "Your Warcries do not grant Buffs or Charges to You", - [2] = "100% more Warcry Duration", + [1] = "50% of Physical, Cold and Lightning Damage Converted to Fire Damage", + [2] = "Deal no Non-Fire Damage", [3] = "Limited to 1 Keystone Tattoo", }, ["stats"] = { - ["keystone_call_to_arms"] = { + ["keystone_avatar_of_fire"] = { ["fmt"] = "d", ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 10932, + ["statOrder"] = 10876, }, }, ["targetType"] = "Keystone", ["targetValue"] = "", }, - ["Chaos Inoculation"] = { + ["Avatar of the Wilds"] = { ["MaximumConnected"] = 100, ["MinimumConnected"] = 0, ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", - ["dn"] = "Chaos Inoculation", - ["icon"] = "Art/2DArt/SkillIcons/passives/KeystoneChaosInoculation.png", - ["id"] = "chaos_inoculation1141", + ["dn"] = "Avatar of the Wilds", + ["icon"] = "Art/2DArt/SkillIcons/passives/Warden/WardenAllAilments.png", + ["id"] = "AscendancyRaider12", ["isTattoo"] = true, - ["ks"] = true, + ["ks"] = false, ["m"] = false, - ["not"] = false, - ["overrideType"] = "KeystoneTattoo", + ["not"] = true, + ["overrideType"] = "AscendancyTattooRanger", ["sd"] = { - [1] = "Maximum Life becomes 1, Immune to Chaos Damage", - [2] = "Limited to 1 Keystone Tattoo", + [1] = "Grants Level 20 Unbound Avatar Skill", + [2] = "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", + [3] = "Cannot gain Unbound Fury while Unbound", + [4] = "Your Hits always inflict Freeze, Shock and Ignite while Unbound", + [5] = "100% more Elemental Damage while Unbound", + [6] = "Limited to 1 Ascendancy Tattoo", }, ["stats"] = { - ["keystone_chaos_inoculation"] = { + ["ailment_bearer_always_freeze_shock_ignite"] = { ["fmt"] = "d", - ["index"] = 1, + ["index"] = 2, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 10893, + ["statOrder"] = 4615, + }, + ["ailment_bearer_elemental_damage_+%_final"] = { + ["fmt"] = "d", + ["index"] = 4, + ["max"] = 100, + ["min"] = 100, + ["statOrder"] = 4616, + }, + ["display_ailment_bearer_charge_interval"] = { + ["fmt"] = "d", + ["index"] = 3, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 4437, + }, + ["local_display_grants_skill_ailment_bearer"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 20, + ["min"] = 20, + ["statOrder"] = 687, }, }, - ["targetType"] = "Keystone", + ["targetType"] = "Ascendancy Notable", ["targetValue"] = "", }, - ["Conduit"] = { + ["Avidity"] = { ["MaximumConnected"] = 100, ["MinimumConnected"] = 0, ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", - ["dn"] = "Conduit", - ["icon"] = "Art/2DArt/SkillIcons/passives/KeystoneConduit.png", - ["id"] = "conduit1135", + ["dn"] = "Avidity", + ["icon"] = "Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeFrenzyChargeNotable.png", + ["id"] = "AscendancyDeadeye10", ["isTattoo"] = true, - ["ks"] = true, + ["ks"] = false, ["m"] = false, - ["not"] = false, - ["overrideType"] = "KeystoneTattoo", + ["not"] = true, + ["overrideType"] = "AscendancyTattooRanger", ["sd"] = { - [1] = "Share Endurance, Frenzy and Power Charges with nearby party members", - [2] = "Limited to 1 Keystone Tattoo", + [1] = "5% more Accuracy Rating per Frenzy Charge", + [2] = "Gain a Frenzy Charge each second while Moving", + [3] = "+1 to Maximum Frenzy Charges", + [4] = "Limited to 1 Ascendancy Tattoo", }, ["stats"] = { - ["keystone_conduit"] = { + ["deadeye_accuracy_rating_+%_final_per_frenzy_charge"] = { + ["fmt"] = "d", + ["index"] = 3, + ["max"] = 5, + ["min"] = 5, + ["statOrder"] = 6133, + }, + ["gain_a_frenzy_charge_every_X_seconds_while_moving"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 6709, + }, + ["max_frenzy_charges"] = { ["fmt"] = "d", ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 10888, + ["statOrder"] = 10871, }, }, - ["targetType"] = "Keystone", + ["targetType"] = "Ascendancy Notable", ["targetValue"] = "", }, - ["Crimson Dance"] = { + ["Bane of Legends"] = { ["MaximumConnected"] = 100, ["MinimumConnected"] = 0, ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", - ["dn"] = "Crimson Dance", - ["icon"] = "Art/2DArt/SkillIcons/passives/CrimsonDance.png", - ["id"] = "bleed_stack_keystone2187", + ["dn"] = "Bane of Legends", + ["icon"] = "Art/2DArt/SkillIcons/passives/Slayer/Headman.png", + ["id"] = "AscendancySlayer9", ["isTattoo"] = true, - ["ks"] = true, + ["ks"] = false, ["m"] = false, - ["not"] = false, - ["overrideType"] = "KeystoneTattoo", + ["not"] = true, + ["overrideType"] = "AscendancyTattooDuelist", ["sd"] = { - [1] = "You can inflict Bleeding on an Enemy up to 8 times", - [2] = "Your Bleeding does not deal extra Damage while the Enemy is moving and cannot be Aggravated", - [3] = "50% less Damage with Bleeding", - [4] = "Limited to 1 Keystone Tattoo", + [1] = "10% more Damage if you've Killed Recently", + [2] = "Cannot take Reflected Physical Damage", + [3] = "20% more Damage with Hits and Ailments against Unique Enemies", + [4] = "Limited to 1 Ascendancy Tattoo", }, ["stats"] = { - ["keystone_crimson_dance"] = { + ["cannot_take_reflected_physical_damage"] = { ["fmt"] = "d", - ["index"] = 1, + ["index"] = 3, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 10921, + ["statOrder"] = 5447, + }, + ["damage_+%_if_enemy_killed_recently_final"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 10, + ["min"] = 10, + ["statOrder"] = 4218, + }, + ["slayer_damage_+%_final_against_unique_enemies"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 20, + ["min"] = 20, + ["statOrder"] = 10077, }, }, - ["targetType"] = "Keystone", + ["targetType"] = "Ascendancy Notable", ["targetValue"] = "", }, - ["Divine Shield"] = { + ["Bastion of Elements"] = { ["MaximumConnected"] = 100, ["MinimumConnected"] = 0, ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", - ["dn"] = "Divine Shield", - ["icon"] = "Art/2DArt/SkillIcons/passives/EnergisedFortress.png", - ["id"] = "energised_fortress_keystone2853", + ["dn"] = "Bastion of Elements", + ["icon"] = "Art/2DArt/SkillIcons/passives/Elementalist/IridescentFlesh.png", + ["id"] = "AscendancyElementalist12", ["isTattoo"] = true, - ["ks"] = true, + ["ks"] = false, ["m"] = false, - ["not"] = false, - ["overrideType"] = "KeystoneTattoo", + ["not"] = true, + ["overrideType"] = "AscendancyTattooWitch", ["sd"] = { - [1] = "Cannot Recover Energy Shield to above Armour", - [2] = "3% of Physical Damage prevented from Hits Recently is Regenerated as Energy Shield per second", - [3] = "Limited to 1 Keystone Tattoo", + [1] = "Triggers Level 20 Primal Aegis when Allocated", + [2] = "Primal Aegis can take 75 Elemental Damage per Allocated Notable Passive Skill", + [3] = "Other Aegis Skills are Disabled", + [4] = "Cannot take Reflected Elemental Damage", + [5] = "Limited to 1 Ascendancy Tattoo", }, ["stats"] = { - ["keystone_divine_shield"] = { + ["cannot_take_reflected_elemental_damage"] = { + ["fmt"] = "d", + ["index"] = 3, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 5446, + }, + ["local_display_cast_primal_aegis_on_gain_skill"] = { ["fmt"] = "d", ["index"] = 1, + ["max"] = 20, + ["min"] = 20, + ["statOrder"] = 775, + }, + ["your_aegis_skills_except_primal_are_disabled"] = { + ["fmt"] = "d", + ["index"] = 2, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 10936, + ["statOrder"] = 836, }, }, - ["targetType"] = "Keystone", + ["targetType"] = "Ascendancy Notable", ["targetValue"] = "", }, - ["Eldritch Battery"] = { + ["Bastion of Hope"] = { ["MaximumConnected"] = 100, ["MinimumConnected"] = 0, ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", - ["dn"] = "Eldritch Battery", - ["icon"] = "Art/2DArt/SkillIcons/passives/KeystoneEldritchBattery.png", - ["id"] = "eldritch_battery1142", + ["dn"] = "Bastion of Hope", + ["icon"] = "Art/2DArt/SkillIcons/passives/Guardian/ShieldMastery.png", + ["id"] = "AscendancyGuardian4", ["isTattoo"] = true, - ["ks"] = true, + ["ks"] = false, ["m"] = false, - ["not"] = false, - ["overrideType"] = "KeystoneTattoo", + ["not"] = true, + ["overrideType"] = "AscendancyTattooTemplar", ["sd"] = { - [1] = "Spend Energy Shield before Mana for Skill Mana Costs", - [2] = "Energy Shield protects Mana instead of Life", - [3] = "50% less Energy Shield Recharge Rate", - [4] = "Limited to 1 Keystone Tattoo", + [1] = "If you've Attacked Recently, you and nearby Allies have +25% Chance to Block Attack Damage", + [2] = "If you've Cast a Spell Recently, you and nearby Allies have +25% Chance to Block Spell Damage", + [3] = "Limited to 1 Ascendancy Tattoo", }, ["stats"] = { - ["keystone_eldritch_battery"] = { + ["you_and_allies_additional_block_%_if_have_attacked_recently"] = { ["fmt"] = "d", ["index"] = 1, - ["max"] = 1, - ["min"] = 1, - ["statOrder"] = 10877, + ["max"] = 25, + ["min"] = 25, + ["statOrder"] = 10637, + }, + ["you_and_allies_additional_spell_block_%_if_cast_spell_recently"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 25, + ["min"] = 25, + ["statOrder"] = 10638, }, }, - ["targetType"] = "Keystone", + ["targetType"] = "Ascendancy Notable", ["targetValue"] = "", }, - ["Elemental Equilibrium"] = { + ["Berserker"] = { ["MaximumConnected"] = 100, ["MinimumConnected"] = 0, ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", - ["dn"] = "Elemental Equilibrium", - ["icon"] = "Art/2DArt/SkillIcons/passives/KeystoneElementalEquilibrium.png", - ["id"] = "elemental_equilibrium1177", + ["dn"] = "Berserker", + ["icon"] = "Art/2DArt/SkillIcons/passives/Ascendants/Berserker.png", + ["id"] = "AscendancyAscendant32", ["isTattoo"] = true, - ["ks"] = true, + ["ks"] = false, ["m"] = false, - ["not"] = false, - ["overrideType"] = "KeystoneTattoo", + ["not"] = true, + ["overrideType"] = "AscendancyTattooScion", ["sd"] = { - [1] = "Hits that deal Elemental Damage remove Exposure to those Elements and inflict Exposure to other Elements", - [2] = "Exposure inflicted this way applies -25% to Resistances", - [3] = "Limited to 1 Keystone Tattoo", + [1] = "5% increased Damage taken", + [2] = "15% more Damage", + [3] = "2% of Attack Damage Leeched as Life and Mana if you've Killed Recently", + [4] = "Cannot be Stunned while you have at least 25 Rage", + [5] = "Inherent Rage Loss starts 1 second later", + [6] = "Limited to 1 Ascendancy Tattoo", }, ["stats"] = { - ["keystone_elemental_equilibrium"] = { + ["base_damage_taken_+%"] = { ["fmt"] = "d", - ["index"] = 1, + ["index"] = 4, + ["max"] = 5, + ["min"] = 5, + ["statOrder"] = 2238, + }, + ["berserker_damage_+%_final"] = { + ["fmt"] = "d", + ["index"] = 3, + ["max"] = 15, + ["min"] = 15, + ["statOrder"] = 4054, + }, + ["cannot_be_stunned_with_25_rage"] = { + ["fmt"] = "d", + ["index"] = 2, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 10892, + ["statOrder"] = 9792, + }, + ["life_and_mana_leech_from_attack_damage_permyriad_if_killed_recently"] = { + ["fmt"] = "g", + ["index"] = 5, + ["max"] = 2, + ["min"] = 2, + ["statOrder"] = 7346, + }, + ["rage_loss_delay_ms"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 1000, + ["min"] = 1000, + ["statOrder"] = 9798, }, }, - ["targetType"] = "Keystone", + ["targetType"] = "Ascendancy Notable", ["targetValue"] = "", }, - ["Elemental Overload"] = { + ["Blood Magic"] = { ["MaximumConnected"] = 100, ["MinimumConnected"] = 0, ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", - ["dn"] = "Elemental Overload", - ["icon"] = "Art/2DArt/SkillIcons/passives/KeystoneElementalOverload.png", - ["id"] = "elemental_overload_keystone2152", + ["dn"] = "Blood Magic", + ["icon"] = "Art/2DArt/SkillIcons/passives/KeystoneBloodMagic.png", + ["id"] = "blood_magic1143", ["isTattoo"] = true, ["ks"] = true, ["m"] = false, ["not"] = false, ["overrideType"] = "KeystoneTattoo", ["sd"] = { - [1] = "Skills that have dealt a Critical Strike in the past 8 seconds deal 40% more Elemental Damage with Hits and Ailments", - [2] = "Your Critical Strikes do not deal extra Damage", - [3] = "Ailments never count as being from Critical Strikes", - [4] = "Limited to 1 Keystone Tattoo", + [1] = "Removes all mana", + [2] = "10% more maximum Life", + [3] = "Skills Cost Life instead of Mana", + [4] = "Skills Reserve Life instead of Mana", + [5] = "Limited to 1 Keystone Tattoo", }, ["stats"] = { - ["keystone_elemental_overload"] = { + ["keystone_blood_magic"] = { ["fmt"] = "d", ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 10937, + ["statOrder"] = 10890, }, }, ["targetType"] = "Keystone", ["targetValue"] = "", }, - ["Eternal Youth"] = { + ["Bloodsoaked Blade"] = { ["MaximumConnected"] = 100, ["MinimumConnected"] = 0, ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", - ["dn"] = "Eternal Youth", - ["icon"] = "Art/2DArt/SkillIcons/passives/EternalYouth.png", - ["id"] = "eternal_youth_keytone2692", + ["dn"] = "Bloodsoaked Blade", + ["icon"] = "Art/2DArt/SkillIcons/passives/TinctureKeystone1.png", + ["id"] = "keystone_bloodsoaked_blade", ["isTattoo"] = true, ["ks"] = true, ["m"] = false, ["not"] = false, ["overrideType"] = "KeystoneTattoo", ["sd"] = { - [1] = "50% less Life Regeneration Rate", - [2] = "50% less maximum Total Life Recovery per Second from Leech", - [3] = "Energy Shield Recharge instead applies to Life", - [4] = "Limited to 1 Keystone Tattoo", + [1] = "Tinctures inflict Weeping Wounds instead of Mana Burn", + [2] = "Effects that interact with Mana Burn interact with Weeping Wounds instead", + [3] = "Limited to 1 Keystone Tattoo", }, ["stats"] = { - ["keystone_eternal_youth"] = { + ["keystone_tinctures_drain_life"] = { ["fmt"] = "d", ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 10939, + ["statOrder"] = 10971, }, }, ["targetType"] = "Keystone", ["targetValue"] = "", }, - ["Ghost Dance"] = { + ["Bomb Specialist"] = { ["MaximumConnected"] = 100, ["MinimumConnected"] = 0, ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", - ["dn"] = "Ghost Dance", - ["icon"] = "Art/2DArt/SkillIcons/passives/Trickster/AcrobaticWillpower.png", - ["id"] = "ghost_dance_keystone2852_", + ["dn"] = "Bomb Specialist", + ["icon"] = "Art/2DArt/SkillIcons/passives/Saboteur/BombSpecialist.png", + ["id"] = "AscendancySaboteur16", ["isTattoo"] = true, - ["ks"] = true, + ["ks"] = false, ["m"] = false, - ["not"] = false, - ["overrideType"] = "KeystoneTattoo", + ["not"] = true, + ["overrideType"] = "AscendancyTattooShadow", ["sd"] = { - [1] = "Cannot Recover Energy Shield to above Evasion Rating", - [2] = "Every 2 seconds, gain a Ghost Shroud, up to a maximum of 3", - [3] = "When Hit, lose a Ghost Shroud to Recover Energy Shield equal to 3% of your Evasion Rating", - [4] = "Limited to 1 Keystone Tattoo", + [1] = "Hits have 30% chance to deal 50% more Area Damage", + [2] = "30% chance to take 50% less Area Damage from Hits", + [3] = "Limited to 1 Ascendancy Tattoo", }, ["stats"] = { - ["keystone_ghost_dance"] = { + ["%_chance_to_deal_150%_area_damage_+%_final"] = { ["fmt"] = "d", ["index"] = 1, - ["max"] = 1, - ["min"] = 1, - ["statOrder"] = 10941, + ["max"] = 30, + ["min"] = 30, + ["statOrder"] = 9598, + }, + ["take_half_area_damage_from_hit_%_chance"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 30, + ["min"] = 30, + ["statOrder"] = 10352, }, }, - ["targetType"] = "Keystone", + ["targetType"] = "Ascendancy Notable", ["targetValue"] = "", }, - ["Ghost Reaver"] = { + ["Bone Barrier"] = { ["MaximumConnected"] = 100, ["MinimumConnected"] = 0, ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", - ["dn"] = "Ghost Reaver", - ["icon"] = "Art/2DArt/SkillIcons/passives/ghostreaver.png", - ["id"] = "ghost_reaver1306", + ["dn"] = "Bone Barrier", + ["icon"] = "Art/2DArt/SkillIcons/passives/Necromancer/DefensiveMinionNotable.png", + ["id"] = "AscendancyNecromancer9", ["isTattoo"] = true, - ["ks"] = true, + ["ks"] = false, ["m"] = false, - ["not"] = false, - ["overrideType"] = "KeystoneTattoo", + ["not"] = true, + ["overrideType"] = "AscendancyTattooWitch", ["sd"] = { - [1] = "Leech Energy Shield instead of Life", - [2] = "Maximum total Energy Shield Recovery per second from Leech is doubled", - [3] = "Cannot Recharge Energy Shield", - [4] = "Limited to 1 Keystone Tattoo", + [1] = "1% additional Physical Damage Reduction per Minion, up to 10%", + [2] = "1% of Damage Dealt by your Minions is Leeched to you as Life", + [3] = "Minions gain 40% of Maximum Life as Extra Maximum Energy Shield", + [4] = "Limited to 1 Ascendancy Tattoo", }, ["stats"] = { - ["keystone_ghost_reaver"] = { + ["additional_physical_damage_reduction_%_per_minion_up_to_10%"] = { ["fmt"] = "d", ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 10942, + ["statOrder"] = 4576, + }, + ["life_leech_from_minion_damage_%"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 7371, + }, + ["minion_maximum_life_%_to_add_as_maximum_energy_shield"] = { + ["fmt"] = "d", + ["index"] = 3, + ["max"] = 40, + ["min"] = 40, + ["statOrder"] = 9319, }, }, - ["targetType"] = "Keystone", + ["targetType"] = "Ascendancy Notable", ["targetValue"] = "", }, - ["Glancing Blows"] = { + ["Born in the Shadows"] = { ["MaximumConnected"] = 100, ["MinimumConnected"] = 0, ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", - ["dn"] = "Glancing Blows", - ["icon"] = "Art/2DArt/SkillIcons/passives/GlancingBlows.png", - ["id"] = "glancing_blows_keystone2693", + ["dn"] = "Born in the Shadows", + ["icon"] = "Art/2DArt/SkillIcons/passives/Saboteur/ShadowsDarknessBlind.png", + ["id"] = "AscendancySaboteur4", ["isTattoo"] = true, - ["ks"] = true, + ["ks"] = false, ["m"] = false, - ["not"] = false, - ["overrideType"] = "KeystoneTattoo", + ["not"] = true, + ["overrideType"] = "AscendancyTattooShadow", ["sd"] = { - [1] = "Chance to Block Attack Damage is doubled", - [2] = "Chance to Block Spell Damage is doubled", - [3] = "You take 65% of Damage from Blocked Hits", - [4] = "Limited to 1 Keystone Tattoo", + [1] = "Cannot be Blinded", + [2] = "15% reduced Damage taken from Blinded Enemies", + [3] = "Nearby Enemies are Blinded", + [4] = "Blind Enemies on Hit", + [5] = "Limited to 1 Ascendancy Tattoo", }, ["stats"] = { - ["keystone_glancing_blows"] = { + ["cannot_be_blinded"] = { ["fmt"] = "d", ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 10943, + ["statOrder"] = 2974, + }, + ["damage_taken_+%_from_blinded_enemies"] = { + ["fmt"] = "d", + ["index"] = 3, + ["max"] = 15, + ["min"] = 15, + ["statOrder"] = 3284, + }, + ["global_chance_to_blind_on_hit_%"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 100, + ["min"] = 100, + ["statOrder"] = 10907, + }, + ["local_display_nearby_enemies_are_blinded"] = { + ["fmt"] = "d", + ["index"] = 4, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 3396, }, }, - ["targetType"] = "Keystone", + ["targetType"] = "Ascendancy Notable", ["targetValue"] = "", }, - ["Hex Master"] = { + ["Bringer of Ruin"] = { ["MaximumConnected"] = 100, ["MinimumConnected"] = 0, ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", - ["dn"] = "Hex Master", - ["icon"] = "Art/2DArt/SkillIcons/passives/KeystoneHexMaster.png", - ["id"] = "hex_zone_keystone2800_", + ["dn"] = "Bringer of Ruin", + ["icon"] = "Art/2DArt/SkillIcons/passives/Elementalist/ElemancerIcon.png", + ["id"] = "AscendancyElementalist14", ["isTattoo"] = true, - ["ks"] = true, + ["ks"] = false, ["m"] = false, - ["not"] = false, - ["overrideType"] = "KeystoneTattoo", + ["not"] = true, + ["overrideType"] = "AscendancyTattooWitch", ["sd"] = { - [1] = "Your Hexes have infinite Duration", - [2] = "20% less Effect of your Curses", - [3] = "Limited to 1 Keystone Tattoo", + [1] = "66% increased Effect of Herald Buffs on you", + [2] = "66% increased Mana Reservation Efficiency of Herald Skills", + [3] = "Limited to 1 Ascendancy Tattoo", }, ["stats"] = { - ["keystone_hex_master"] = { + ["herald_effect_on_self_+%"] = { ["fmt"] = "d", ["index"] = 1, - ["max"] = 1, - ["min"] = 1, - ["statOrder"] = 10945, + ["max"] = 66, + ["min"] = 66, + ["statOrder"] = 7105, + }, + ["herald_skills_mana_reservation_efficiency_+%"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 66, + ["min"] = 66, + ["statOrder"] = 7132, }, }, - ["targetType"] = "Keystone", + ["targetType"] = "Ascendancy Notable", ["targetValue"] = "", }, - ["Honoured Tattoo of the Barbarian"] = { + ["Brutal Fervour"] = { ["MaximumConnected"] = 100, ["MinimumConnected"] = 0, - ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/HinekoraPassiveBG.png", - ["dn"] = "Honoured Tattoo of the Barbarian", - ["icon"] = "Art/2DArt/SkillIcons/passives/HinekoraPassiveIcon2.png", - ["id"] = "SpecialNotableDex2", + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", + ["dn"] = "Brutal Fervour", + ["icon"] = "Art/2DArt/SkillIcons/passives/Slayer/BrutalFervor.png", + ["id"] = "AscendancySlayer11", ["isTattoo"] = true, ["ks"] = false, - ["legacy"] = true, ["m"] = false, ["not"] = true, - ["overrideType"] = "UnknownTattoo", + ["overrideType"] = "AscendancyTattooDuelist", ["sd"] = { - [1] = "+1% to maximum Cold Resistance", - [2] = "+1 to Maximum Frenzy Charges", - [3] = "Limited to 1 Attribute Notable Tattoo", + [1] = "100% increased Maximum Recovery per Life Leech", + [2] = "Life Leech effects are not removed when Unreserved Life is Filled", + [3] = "10% reduced Damage taken while Leeching", + [4] = "Limited to 1 Ascendancy Tattoo", }, ["stats"] = { - ["base_maximum_cold_damage_resistance_%"] = { + ["damage_taken_+%_while_leeching"] = { ["fmt"] = "d", - ["max"] = 1, - ["min"] = 1, + ["index"] = 2, + ["max"] = 10, + ["min"] = 10, + ["statOrder"] = 6121, }, - ["max_frenzy_charges"] = { + ["life_leech_does_not_stop_at_full_life"] = { ["fmt"] = "d", + ["index"] = 1, ["max"] = 1, ["min"] = 1, + ["statOrder"] = 3211, + }, + ["maximum_life_leech_amount_per_leech_+%"] = { + ["fmt"] = "d", + ["index"] = 3, + ["max"] = 100, + ["min"] = 100, + ["statOrder"] = 1724, }, }, - ["targetType"] = "Notable", - ["targetValue"] = "+30 to Dexterity", + ["targetType"] = "Ascendancy Notable", + ["targetValue"] = "", }, - ["Honoured Tattoo of the Berserker"] = { + ["Calculated Risk"] = { ["MaximumConnected"] = 100, ["MinimumConnected"] = 0, - ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/HinekoraPassiveBG.png", - ["dn"] = "Honoured Tattoo of the Berserker", - ["icon"] = "Art/2DArt/SkillIcons/passives/HinekoraPassiveIcon2.png", - ["id"] = "SpecialNotableDex3", + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", + ["dn"] = "Calculated Risk", + ["icon"] = "Art/2DArt/SkillIcons/passives/Saboteur/ExplosivesExpert.png", + ["id"] = "AscendancySaboteur6", ["isTattoo"] = true, ["ks"] = false, - ["legacy"] = true, ["m"] = false, ["not"] = true, - ["overrideType"] = "UnknownTattoo", + ["overrideType"] = "AscendancyTattooShadow", ["sd"] = { - [1] = "You gain Onslaught for 4 seconds on Hit", - [2] = "Limited to 1 Attribute Notable Tattoo", + [1] = "Your Critical Strike Chance is Lucky", + [2] = "Damage of Enemies Hitting you is Unlucky", + [3] = "Damage with Hits is Unlucky", + [4] = "Limited to 1 Ascendancy Tattoo", }, ["stats"] = { - ["gain_onslaught_on_hit_duration_ms"] = { - ["fmt"] = "g", - ["max"] = 4, - ["min"] = 4, + ["base_enemy_extra_damage_rolls"] = { + ["fmt"] = "d", + ["index"] = 3, + ["max"] = -1, + ["min"] = -1, + ["statOrder"] = 5012, + }, + ["base_extra_damage_rolls"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = -1, + ["min"] = -1, + ["statOrder"] = 5019, + }, + ["extra_critical_rolls"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 2674, }, }, - ["targetType"] = "Notable", - ["targetValue"] = "+30 to Dexterity", + ["targetType"] = "Ascendancy Notable", + ["targetValue"] = "", }, - ["Honoured Tattoo of the Dove"] = { + ["Call to Arms"] = { ["MaximumConnected"] = 100, ["MinimumConnected"] = 0, - ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/HinekoraPassiveBG.png", - ["dn"] = "Honoured Tattoo of the Dove", - ["icon"] = "Art/2DArt/SkillIcons/passives/ChaosResistNode.png", - ["id"] = "SpecialSmallNode1", + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", + ["dn"] = "Call to Arms", + ["icon"] = "Art/2DArt/SkillIcons/passives/CallToArms.png", + ["id"] = "call_to_arms_keystone2691", ["isTattoo"] = true, - ["ks"] = false, - ["legacy"] = true, + ["ks"] = true, ["m"] = false, ["not"] = false, - ["overrideType"] = "UnknownTattoo", + ["overrideType"] = "KeystoneTattoo", ["sd"] = { - [1] = "+4% to Chaos Resistance", + [1] = "Your Warcries do not grant Buffs or Charges to You", + [2] = "100% more Warcry Duration", + [3] = "Limited to 1 Keystone Tattoo", }, ["stats"] = { - ["base_chaos_damage_resistance_%"] = { + ["keystone_call_to_arms"] = { ["fmt"] = "d", - ["max"] = 4, - ["min"] = 4, - }, - }, - ["targetType"] = "Small Attribute", + ["index"] = 1, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 10932, + }, + }, + ["targetType"] = "Keystone", ["targetValue"] = "", }, - ["Honoured Tattoo of the Flock"] = { + ["Chain Reaction"] = { ["MaximumConnected"] = 100, ["MinimumConnected"] = 0, - ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/HinekoraPassiveBG.png", - ["dn"] = "Honoured Tattoo of the Flock", - ["icon"] = "Art/2DArt/SkillIcons/passives/auraeffect.png", - ["id"] = "SpecialSmallNode8", + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", + ["dn"] = "Chain Reaction", + ["icon"] = "Art/2DArt/SkillIcons/passives/Saboteur/ChainReaction.png", + ["id"] = "AscendancySaboteur14", ["isTattoo"] = true, ["ks"] = false, - ["legacy"] = true, ["m"] = false, - ["not"] = false, - ["overrideType"] = "UnknownTattoo", + ["not"] = true, + ["overrideType"] = "AscendancyTattooShadow", ["sd"] = { - [1] = "1% increased effect of Non-Curse Auras from your Skills", + [1] = "Skills used by Traps have 50% increased Area of Effect", + [2] = "When your Traps Trigger, your nearby Traps also Trigger", + [3] = "Limited to 1 Ascendancy Tattoo", }, ["stats"] = { - ["non_curse_aura_effect_+%"] = { + ["nearby_traps_within_x_units_also_trigger_on_triggering_trap"] = { ["fmt"] = "d", - ["max"] = 1, - ["min"] = 1, + ["index"] = 1, + ["max"] = 20, + ["min"] = 20, + ["statOrder"] = 3482, + }, + ["trap_skill_area_of_effect_+%"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 50, + ["min"] = 50, + ["statOrder"] = 3479, }, }, - ["targetType"] = "Small Attribute", + ["targetType"] = "Ascendancy Notable", ["targetValue"] = "", }, - ["Honoured Tattoo of the Flood"] = { + ["Champion"] = { ["MaximumConnected"] = 100, ["MinimumConnected"] = 0, - ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/HinekoraPassiveBG.png", - ["dn"] = "Honoured Tattoo of the Flood", - ["icon"] = "Art/2DArt/SkillIcons/passives/HinekoraPassiveIcon3.png", - ["id"] = "SpecialNotableInt3", + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", + ["dn"] = "Champion", + ["icon"] = "Art/2DArt/SkillIcons/passives/Ascendants/Champion.png", + ["id"] = "AscendancyAscendant42", ["isTattoo"] = true, ["ks"] = false, - ["legacy"] = true, ["m"] = false, ["not"] = true, - ["overrideType"] = "UnknownTattoo", + ["overrideType"] = "AscendancyTattooScion", ["sd"] = { - [1] = "Gain Arcane Surge on Hit with Spells", - [2] = "Limited to 1 Attribute Notable Tattoo", + [1] = "Melee Hits have 50% chance to Fortify", + [2] = "Taunt on Hit", + [3] = "15% increased effect of Non-Curse Auras from your Skills", + [4] = "Your Hits permanently Intimidate Enemies that are on Full Life", + [5] = "Enemies Taunted by you take 10% increased Damage", + [6] = "Limited to 1 Ascendancy Tattoo", }, ["stats"] = { - ["gain_arcane_surge_on_hit_%_chance"] = { + ["chance_to_fortify_on_melee_hit_+%"] = { + ["fmt"] = "d", + ["index"] = 4, + ["max"] = 50, + ["min"] = 50, + ["statOrder"] = 2264, + }, + ["chance_to_taunt_on_hit_%"] = { ["fmt"] = "d", + ["index"] = 2, ["max"] = 100, ["min"] = 100, + ["statOrder"] = 3430, + }, + ["non_curse_aura_effect_+%"] = { + ["fmt"] = "d", + ["index"] = 5, + ["max"] = 15, + ["min"] = 15, + ["statOrder"] = 3566, + }, + ["permanently_intimidate_enemies_you_hit_on_full_life"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 4255, + }, + ["taunted_enemies_damage_taken_+%"] = { + ["fmt"] = "d", + ["index"] = 3, + ["max"] = 10, + ["min"] = 10, + ["statOrder"] = 4280, }, }, - ["targetType"] = "Notable", - ["targetValue"] = "+30 to Intelligence", + ["targetType"] = "Ascendancy Notable", + ["targetValue"] = "", }, - ["Honoured Tattoo of the Hatungo"] = { + ["Chaos Inoculation"] = { ["MaximumConnected"] = 100, ["MinimumConnected"] = 0, - ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/HinekoraPassiveBG.png", - ["dn"] = "Honoured Tattoo of the Hatungo", - ["icon"] = "Art/2DArt/SkillIcons/passives/manareservationreduction.png", - ["id"] = "SpecialSmallNode7", + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", + ["dn"] = "Chaos Inoculation", + ["icon"] = "Art/2DArt/SkillIcons/passives/KeystoneChaosInoculation.png", + ["id"] = "chaos_inoculation1141", ["isTattoo"] = true, - ["ks"] = false, - ["legacy"] = true, + ["ks"] = true, ["m"] = false, ["not"] = false, - ["overrideType"] = "UnknownTattoo", + ["overrideType"] = "KeystoneTattoo", ["sd"] = { - [1] = "1% increased Reservation Efficiency of Skills", + [1] = "Maximum Life becomes 1, Immune to Chaos Damage", + [2] = "Limited to 1 Keystone Tattoo", }, ["stats"] = { - ["base_reservation_efficiency_+%"] = { + ["keystone_chaos_inoculation"] = { ["fmt"] = "d", + ["index"] = 1, ["max"] = 1, ["min"] = 1, + ["statOrder"] = 10893, }, }, - ["targetType"] = "Small Attribute", + ["targetType"] = "Keystone", ["targetValue"] = "", }, - ["Honoured Tattoo of the Hunter"] = { + ["Chieftain"] = { ["MaximumConnected"] = 100, ["MinimumConnected"] = 0, - ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/HinekoraPassiveBG.png", - ["dn"] = "Honoured Tattoo of the Hunter", - ["icon"] = "Art/2DArt/SkillIcons/passives/HinekoraPassiveIcon2.png", - ["id"] = "SpecialNotableDex1", + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", + ["dn"] = "Chieftain", + ["icon"] = "Art/2DArt/SkillIcons/passives/Ascendants/Chieftain.png", + ["id"] = "AscendancyAscendant33_", ["isTattoo"] = true, ["ks"] = false, - ["legacy"] = true, ["m"] = false, ["not"] = true, - ["overrideType"] = "UnknownTattoo", + ["overrideType"] = "AscendancyTattooScion", ["sd"] = { - [1] = "+1 to Level of all Dexterity Skill Gems", - [2] = "Limited to 1 Attribute Notable Tattoo", + [1] = "20% chance to Cover Rare or Unique Enemies in Ash for 10 Seconds on Hit", + [2] = "Unaffected by Ignite", + [3] = "20% increased Warcry Buff Effect", + [4] = "10% increased Strength", + [5] = "Limited to 1 Ascendancy Tattoo", }, ["stats"] = { - ["dexterity_skill_gem_level_+"] = { + ["apply_covered_in_ash_to_attacker_on_hit_%_vs_rare_or_unique_enemy"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 20, + ["min"] = 20, + ["statOrder"] = 4694, + }, + ["strength_+%"] = { + ["fmt"] = "d", + ["index"] = 3, + ["max"] = 10, + ["min"] = 10, + ["statOrder"] = 10863, + }, + ["unaffected_by_ignite"] = { ["fmt"] = "d", + ["index"] = 2, ["max"] = 1, ["min"] = 1, + ["statOrder"] = 10474, }, - }, - ["targetType"] = "Notable", - ["targetValue"] = "+30 to Dexterity", - }, - ["Honoured Tattoo of the Makanga"] = { - ["MaximumConnected"] = 100, - ["MinimumConnected"] = 8, - ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/HinekoraPassiveBG.png", - ["dn"] = "Honoured Tattoo of the Makanga", - ["icon"] = "Art/2DArt/SkillIcons/passives/ElementalResistance2.png", - ["id"] = "UniqueSmallNode2", - ["isTattoo"] = true, - ["ks"] = false, - ["legacy"] = true, - ["m"] = false, - ["not"] = false, - ["overrideType"] = "UnknownTattoo", - ["reminderText"] = { - [1] = "Requires at least 8 adjacent Passive Skills to be allocated", - }, - ["sd"] = { - [1] = "+2% to all maximum Resistances", - }, - ["stats"] = { - ["additional_maximum_all_resistances_%"] = { + ["warcry_buff_effect_+%"] = { ["fmt"] = "d", - ["max"] = 2, - ["min"] = 2, + ["index"] = 4, + ["max"] = 20, + ["min"] = 20, + ["statOrder"] = 10567, }, }, - ["targetType"] = "Small Attribute", + ["targetType"] = "Ascendancy Notable", ["targetValue"] = "", }, - ["Honoured Tattoo of the Mountain"] = { + ["Commander of Darkness"] = { ["MaximumConnected"] = 100, ["MinimumConnected"] = 0, - ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/HinekoraPassiveBG.png", - ["dn"] = "Honoured Tattoo of the Mountain", - ["icon"] = "Art/2DArt/SkillIcons/passives/HinekoraPassiveIcon1.png", - ["id"] = "SpecialNotableStr2", + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", + ["dn"] = "Commander of Darkness", + ["icon"] = "Art/2DArt/SkillIcons/passives/Necromancer/CommandingTheDarkness.png", + ["id"] = "AscendancyNecromancer12", ["isTattoo"] = true, ["ks"] = false, - ["legacy"] = true, ["m"] = false, ["not"] = true, - ["overrideType"] = "UnknownTattoo", + ["overrideType"] = "AscendancyTattooWitch", ["sd"] = { - [1] = "+1% to maximum Fire Resistance", - [2] = "+1 to Maximum Endurance Charges", - [3] = "Limited to 1 Attribute Notable Tattoo", + [1] = "Auras from your Skills grant 3% increased Attack and Cast", + [2] = "Speed to you and Allies", + [3] = "You and nearby Allies deal 30% increased Damage", + [4] = "You and nearby Allies have +30% to Elemental Resistances", + [5] = "Limited to 1 Ascendancy Tattoo", }, ["stats"] = { - ["base_maximum_fire_damage_resistance_%"] = { + ["auras_grant_attack_and_cast_speed_+%_to_you_and_your_allies"] = { ["fmt"] = "d", - ["max"] = 1, - ["min"] = 1, + ["index"] = 1, + ["max"] = 3, + ["min"] = 3, + ["statOrder"] = 3460, }, - ["max_endurance_charges"] = { + ["damage_+%_for_you_and_allies_affected_by_your_auras"] = { ["fmt"] = "d", - ["max"] = 1, - ["min"] = 1, + ["index"] = 3, + ["max"] = 30, + ["min"] = 30, + ["statOrder"] = 4069, + }, + ["elemental_resistances_+%_for_you_and_allies_affected_by_your_auras"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 30, + ["min"] = 30, + ["statOrder"] = 4070, }, }, - ["targetType"] = "Notable", - ["targetValue"] = "+30 to Strength", + ["targetType"] = "Ascendancy Notable", + ["targetValue"] = "", }, - ["Honoured Tattoo of the Oak"] = { + ["Conduit"] = { ["MaximumConnected"] = 100, ["MinimumConnected"] = 0, - ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/HinekoraPassiveBG.png", - ["dn"] = "Honoured Tattoo of the Oak", - ["icon"] = "Art/2DArt/SkillIcons/passives/life1.png", - ["id"] = "SpecialSmallNode6", + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", + ["dn"] = "Conduit", + ["icon"] = "Art/2DArt/SkillIcons/passives/KeystoneConduit.png", + ["id"] = "conduit1135", ["isTattoo"] = true, - ["ks"] = false, - ["legacy"] = true, + ["ks"] = true, ["m"] = false, ["not"] = false, - ["overrideType"] = "UnknownTattoo", + ["overrideType"] = "KeystoneTattoo", ["sd"] = { - [1] = "2% increased maximum Life", + [1] = "Share Endurance, Frenzy and Power Charges with nearby party members", + [2] = "Limited to 1 Keystone Tattoo", }, ["stats"] = { - ["maximum_life_+%"] = { + ["keystone_conduit"] = { ["fmt"] = "d", - ["max"] = 2, - ["min"] = 2, + ["index"] = 1, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 10888, }, }, - ["targetType"] = "Small Attribute", + ["targetType"] = "Keystone", ["targetValue"] = "", }, - ["Honoured Tattoo of the Pa"] = { + ["Conviction of Power"] = { ["MaximumConnected"] = 100, ["MinimumConnected"] = 0, - ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/HinekoraPassiveBG.png", - ["dn"] = "Honoured Tattoo of the Pa", - ["icon"] = "Art/2DArt/SkillIcons/passives/HinekoraPassiveIcon1.png", - ["id"] = "SpecialNotableStr3", + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", + ["dn"] = "Conviction of Power", + ["icon"] = "Art/2DArt/SkillIcons/passives/Hierophant/DiscipleOfRuin.png", + ["id"] = "AscendancyHeirophant11", ["isTattoo"] = true, ["ks"] = false, - ["legacy"] = true, ["m"] = false, ["not"] = true, - ["overrideType"] = "UnknownTattoo", + ["overrideType"] = "AscendancyTattooTemplar", ["sd"] = { - [1] = "Melee Hits Fortify", - [2] = "Limited to 1 Attribute Notable Tattoo", + [1] = "+4 to Minimum Endurance Charges", + [2] = "+4 to Minimum Power Charges", + [3] = "+1 to Maximum Power Charges and Maximum Endurance Charges", + [4] = "Limited to 1 Ascendancy Tattoo", }, ["stats"] = { - ["fortify_on_hit"] = { + ["base_minimum_endurance_charges"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 4, + ["min"] = 4, + ["statOrder"] = 1803, + }, + ["base_minimum_power_charges"] = { ["fmt"] = "d", + ["index"] = 3, + ["max"] = 4, + ["min"] = 4, + ["statOrder"] = 1813, + }, + ["maximum_power_and_endurance_charges_+"] = { + ["fmt"] = "d", + ["index"] = 1, ["max"] = 1, ["min"] = 1, + ["statOrder"] = 9178, }, }, - ["targetType"] = "Notable", - ["targetValue"] = "+30 to Strength", + ["targetType"] = "Ascendancy Notable", + ["targetValue"] = "", }, - ["Honoured Tattoo of the Pillager"] = { + ["Corpse Pact"] = { ["MaximumConnected"] = 100, ["MinimumConnected"] = 0, - ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/HinekoraPassiveBG.png", - ["dn"] = "Honoured Tattoo of the Pillager", - ["icon"] = "Art/2DArt/SkillIcons/passives/accuracyint.png", - ["id"] = "SpecialSmallNode4", + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", + ["dn"] = "Corpse Pact", + ["icon"] = "Art/2DArt/SkillIcons/passives/Necromancer/CorpseConsumptionNotable2.png", + ["id"] = "AscendancyNecromancer16", ["isTattoo"] = true, ["ks"] = false, - ["legacy"] = true, ["m"] = false, - ["not"] = false, - ["overrideType"] = "UnknownTattoo", + ["not"] = true, + ["overrideType"] = "AscendancyTattooWitch", ["sd"] = { - [1] = "3% increased Rarity of Items found", + [1] = "4% increased Attack and Cast Speed for each corpse Consumed Recently, up to a maximum of 200%", + [2] = "Enemies near corpses you Spawned Recently are Chilled and Shocked", + [3] = "Limited to 1 Ascendancy Tattoo", }, ["stats"] = { - ["base_item_found_rarity_+%"] = { + ["attack_and_cast_speed_+%_per_corpse_consumed_recently"] = { ["fmt"] = "d", - ["max"] = 3, - ["min"] = 3, + ["index"] = 2, + ["max"] = 4, + ["min"] = 4, + ["statOrder"] = 4254, + }, + ["enemies_near_corpses_created_recently_are_shocked_and_chilled"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 6387, }, }, - ["targetType"] = "Small Attribute", + ["targetType"] = "Ascendancy Notable", ["targetValue"] = "", }, - ["Honoured Tattoo of the Sky"] = { + ["Crave the Slaughter"] = { ["MaximumConnected"] = 100, ["MinimumConnected"] = 0, - ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/HinekoraPassiveBG.png", - ["dn"] = "Honoured Tattoo of the Sky", - ["icon"] = "Art/2DArt/SkillIcons/passives/ElementalResistance2.png", - ["id"] = "SpecialSmallNode2", + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", + ["dn"] = "Crave the Slaughter", + ["icon"] = "Art/2DArt/SkillIcons/passives/Berserker/CombatFrenzy.png", + ["id"] = "AscendancyBerserker11", ["isTattoo"] = true, ["ks"] = false, - ["legacy"] = true, ["m"] = false, - ["not"] = false, - ["overrideType"] = "UnknownTattoo", + ["not"] = true, + ["overrideType"] = "AscendancyTattooMarauder", ["sd"] = { - [1] = "+3% to all Elemental Resistances", + [1] = "Every Rage also grants 1% increased Attack Speed", + [2] = "Inherent Rage Loss starts 2 seconds later", + [3] = "Limited to 1 Ascendancy Tattoo", }, ["stats"] = { - ["base_resist_all_elements_%"] = { + ["attack_speed_+%_per_rage"] = { ["fmt"] = "d", - ["max"] = 3, - ["min"] = 3, + ["index"] = 2, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 4903, + }, + ["rage_loss_delay_ms"] = { + ["fmt"] = "g", + ["index"] = 1, + ["max"] = 2, + ["min"] = 2, + ["statOrder"] = 9798, }, }, - ["targetType"] = "Small Attribute", + ["targetType"] = "Ascendancy Notable", ["targetValue"] = "", }, - ["Honoured Tattoo of the Storm"] = { + ["Crimson Dance"] = { ["MaximumConnected"] = 100, ["MinimumConnected"] = 0, - ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/HinekoraPassiveBG.png", - ["dn"] = "Honoured Tattoo of the Storm", - ["icon"] = "Art/2DArt/SkillIcons/passives/HinekoraPassiveIcon3.png", - ["id"] = "SpecialNotableInt2", + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", + ["dn"] = "Crimson Dance", + ["icon"] = "Art/2DArt/SkillIcons/passives/CrimsonDance.png", + ["id"] = "bleed_stack_keystone2187", ["isTattoo"] = true, - ["ks"] = false, - ["legacy"] = true, + ["ks"] = true, ["m"] = false, - ["not"] = true, - ["overrideType"] = "UnknownTattoo", + ["not"] = false, + ["overrideType"] = "KeystoneTattoo", ["sd"] = { - [1] = "+1% to maximum Lightning Resistance", - [2] = "+1 to Maximum Power Charges", - [3] = "Limited to 1 Attribute Notable Tattoo", + [1] = "You can inflict Bleeding on an Enemy up to 8 times", + [2] = "Your Bleeding does not deal extra Damage while the Enemy is moving and cannot be Aggravated", + [3] = "50% less Damage with Bleeding", + [4] = "Limited to 1 Keystone Tattoo", }, ["stats"] = { - ["base_maximum_lightning_damage_resistance_%"] = { + ["keystone_crimson_dance"] = { ["fmt"] = "d", + ["index"] = 1, ["max"] = 1, ["min"] = 1, + ["statOrder"] = 10921, }, - ["max_power_charges"] = { + }, + ["targetType"] = "Keystone", + ["targetValue"] = "", + }, + ["Deadeye"] = { + ["MaximumConnected"] = 100, + ["MinimumConnected"] = 0, + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", + ["dn"] = "Deadeye", + ["icon"] = "Art/2DArt/SkillIcons/passives/Ascendants/Deadeye.png", + ["id"] = "AscendancyAscendant35", + ["isTattoo"] = true, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["overrideType"] = "AscendancyTattooScion", + ["sd"] = { + [1] = "25% increased Effect of your Marks", + [2] = "Gain a Frenzy Charge every 3 seconds while Moving", + [3] = "Skills fire an additional Projectile", + [4] = "Limited to 1 Ascendancy Tattoo", + }, + ["stats"] = { + ["gain_a_frenzy_charge_every_X_seconds_while_moving"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 3, + ["min"] = 3, + ["statOrder"] = 6709, + }, + ["mark_skills_curse_effect_+%"] = { + ["fmt"] = "d", + ["index"] = 3, + ["max"] = 25, + ["min"] = 25, + ["statOrder"] = 2598, + }, + ["number_of_additional_projectiles"] = { ["fmt"] = "d", + ["index"] = 2, ["max"] = 1, ["min"] = 1, + ["statOrder"] = 10908, }, }, - ["targetType"] = "Notable", - ["targetValue"] = "+30 to Intelligence", + ["targetType"] = "Ascendancy Notable", + ["targetValue"] = "", }, - ["Honoured Tattoo of the Tuatara"] = { + ["Deathmarked"] = { ["MaximumConnected"] = 100, ["MinimumConnected"] = 0, - ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/HinekoraPassiveBG.png", - ["dn"] = "Honoured Tattoo of the Tuatara", - ["icon"] = "Art/2DArt/SkillIcons/passives/accuracyint.png", - ["id"] = "SpecialSmallNode3", + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", + ["dn"] = "Deathmarked", + ["icon"] = "Art/2DArt/SkillIcons/passives/Assassin/NoxiousStrike.png", + ["id"] = "AscendancyAssassin4", ["isTattoo"] = true, ["ks"] = false, - ["legacy"] = true, ["m"] = false, - ["not"] = false, - ["overrideType"] = "UnknownTattoo", + ["not"] = true, + ["overrideType"] = "AscendancyTattooShadow", ["sd"] = { - [1] = "+4 to all Attributes", + [1] = "Trigger Level 30 Assassin's Mark on Attack Critical Strike against", + [2] = "a Rare or Unique Enemy and you have no Mark", + [3] = "Mark Skills Cost no Mana", + [4] = "Marked Enemy cannot Evade Attacks", + [5] = "Limited to 1 Ascendancy Tattoo", }, ["stats"] = { - ["additional_all_attributes"] = { + ["local_display_trigger_level_X_assassins_mark_when_you_critically_hit_rare_or_unique_enemy_with_attacks"] = { ["fmt"] = "d", - ["max"] = 4, - ["min"] = 4, + ["index"] = 1, + ["max"] = 30, + ["min"] = 30, + ["statOrder"] = 7923, + }, + ["mark_skills_cost_no_mana"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 9107, + }, + ["marked_enemies_cannot_evade"] = { + ["fmt"] = "d", + ["index"] = 3, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 9110, }, }, - ["targetType"] = "Small Attribute", + ["targetType"] = "Ascendancy Notable", ["targetValue"] = "", }, - ["Honoured Tattoo of the Turtle"] = { + ["Defy Pain"] = { ["MaximumConnected"] = 100, ["MinimumConnected"] = 0, - ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/HinekoraPassiveBG.png", - ["dn"] = "Honoured Tattoo of the Turtle", - ["icon"] = "Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.png", - ["id"] = "SpecialSmallNode5", + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", + ["dn"] = "Defy Pain", + ["icon"] = "Art/2DArt/SkillIcons/passives/Berserker/DefyPain.png", + ["id"] = "AscendancyBerserker9", ["isTattoo"] = true, ["ks"] = false, - ["legacy"] = true, ["m"] = false, - ["not"] = false, - ["overrideType"] = "UnknownTattoo", + ["not"] = true, + ["overrideType"] = "AscendancyTattooMarauder", ["sd"] = { - [1] = "3% increased Global Defences", + [1] = "Gain Defiance for 10 seconds on losing Life to an Enemy Hit, no", + [2] = "more than once every 0.3 seconds", + [3] = "Lose all Defiance when you reach 10 Defiance", + [4] = "Gain 3% of Missing Unreserved Life before being Hit by an Enemy Per Defiance", + [5] = "Limited to 1 Ascendancy Tattoo", }, ["stats"] = { - ["global_defences_+%"] = { + ["gain_defiance_when_lose_life_to_hit_once_per_x_ms"] = { + ["fmt"] = "g", + ["index"] = 1, + ["max"] = 0.3, + ["min"] = 0.3, + ["statOrder"] = 4284, + }, + ["lose_all_defiance_on_reaching_x_defiance"] = { + ["fmt"] = "d", + ["index"] = 3, + ["max"] = 10, + ["min"] = 10, + ["statOrder"] = 8136, + }, + ["missing_unreserved_life_%_gained_as_life_before_hit_per_defiance"] = { ["fmt"] = "d", + ["index"] = 2, ["max"] = 3, ["min"] = 3, + ["statOrder"] = 9377, }, }, - ["targetType"] = "Small Attribute", + ["targetType"] = "Ascendancy Notable", ["targetValue"] = "", }, - ["Honoured Tattoo of the Warlord"] = { + ["Demolitions Specialist"] = { ["MaximumConnected"] = 100, ["MinimumConnected"] = 0, - ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/HinekoraPassiveBG.png", - ["dn"] = "Honoured Tattoo of the Warlord", - ["icon"] = "Art/2DArt/SkillIcons/passives/HinekoraPassiveIcon1.png", - ["id"] = "SpecialNotableStr1", + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", + ["dn"] = "Demolitions Specialist", + ["icon"] = "Art/2DArt/SkillIcons/passives/Saboteur/DemolitionSpecialist.png", + ["id"] = "AscendancySaboteur12", ["isTattoo"] = true, ["ks"] = false, - ["legacy"] = true, ["m"] = false, ["not"] = true, - ["overrideType"] = "UnknownTattoo", + ["overrideType"] = "AscendancyTattooShadow", ["sd"] = { - [1] = "+1 to Level of all Strength Skill Gems", - [2] = "Limited to 1 Attribute Notable Tattoo", + [1] = "150% increased Effect of Auras from Mines", + [2] = "Mines Hinder Enemies near them for 2 seconds when they Land", + [3] = "Limited to 1 Ascendancy Tattoo", }, ["stats"] = { - ["strength_skill_gem_level_+"] = { + ["mine_aura_effect_+%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 150, + ["min"] = 150, + ["statOrder"] = 9220, + }, + ["mines_hinder_nearby_enemies_for_x_ms_on_arming"] = { + ["fmt"] = "g", + ["index"] = 2, + ["max"] = 2, + ["min"] = 2, + ["statOrder"] = 9223, + }, + }, + ["targetType"] = "Ascendancy Notable", + ["targetValue"] = "", + }, + ["Determined Survivor"] = { + ["MaximumConnected"] = 100, + ["MinimumConnected"] = 0, + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", + ["dn"] = "Determined Survivor", + ["icon"] = "Art/2DArt/SkillIcons/passives/Gladiator/GLADPainForged.png", + ["id"] = "AscendancyGladiator10", + ["isTattoo"] = true, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["overrideType"] = "AscendancyTattooDuelist", + ["sd"] = { + [1] = "Gain 50% Chance to Block from Equipped Shield instead of the Shield's value", + [2] = "Inherent Bonuses from Dual Wielding are doubled", + [3] = "Limited to 1 Ascendancy Tattoo", + }, + ["stats"] = { + ["block_chance_from_equipped_shield_is_%"] = { ["fmt"] = "d", + ["index"] = 2, + ["max"] = 50, + ["min"] = 50, + ["statOrder"] = 5228, + }, + ["dual_wield_inherent_bonuses_are_doubled"] = { + ["fmt"] = "d", + ["index"] = 1, ["max"] = 1, ["min"] = 1, + ["statOrder"] = 6282, }, }, - ["targetType"] = "Notable", - ["targetValue"] = "+30 to Strength", + ["targetType"] = "Ascendancy Notable", + ["targetValue"] = "", }, - ["Honoured Tattoo of the Wise"] = { + ["Divine Guidance"] = { ["MaximumConnected"] = 100, ["MinimumConnected"] = 0, - ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/HinekoraPassiveBG.png", - ["dn"] = "Honoured Tattoo of the Wise", - ["icon"] = "Art/2DArt/SkillIcons/passives/HinekoraPassiveIcon3.png", - ["id"] = "SpecialNotableInt1", + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", + ["dn"] = "Divine Guidance", + ["icon"] = "Art/2DArt/SkillIcons/passives/Hierophant/MindOverBody.png", + ["id"] = "AscendancyHeirophant7", ["isTattoo"] = true, ["ks"] = false, - ["legacy"] = true, ["m"] = false, ["not"] = true, - ["overrideType"] = "UnknownTattoo", + ["overrideType"] = "AscendancyTattooTemplar", ["sd"] = { - [1] = "+1 to Level of all Intelligence Skill Gems", - [2] = "Limited to 1 Attribute Notable Tattoo", + [1] = "30% increased maximum Mana", + [2] = "10% of Damage is taken from Mana before Life", + [3] = "Transfiguration of Mind", + [4] = "Limited to 1 Ascendancy Tattoo", }, ["stats"] = { - ["intelligence_skill_gem_level_+"] = { + ["additive_mana_modifiers_apply_to_damage_at_30%_value"] = { ["fmt"] = "d", + ["index"] = 3, ["max"] = 1, ["min"] = 1, + ["statOrder"] = 4603, + }, + ["base_damage_removed_from_mana_before_life_%"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 10, + ["min"] = 10, + ["statOrder"] = 2699, + }, + ["maximum_mana_+%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 30, + ["min"] = 30, + ["statOrder"] = 1580, }, }, - ["targetType"] = "Notable", - ["targetValue"] = "+30 to Intelligence", + ["targetType"] = "Ascendancy Notable", + ["targetValue"] = "", }, - ["Imbalanced Guard"] = { + ["Divine Shield"] = { ["MaximumConnected"] = 100, ["MinimumConnected"] = 0, ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", - ["dn"] = "Imbalanced Guard", - ["icon"] = "Art/2DArt/SkillIcons/passives/SacredBastionKeystone.png", - ["id"] = "sacred_bastion_keystone2779", + ["dn"] = "Divine Shield", + ["icon"] = "Art/2DArt/SkillIcons/passives/EnergisedFortress.png", + ["id"] = "energised_fortress_keystone2853", ["isTattoo"] = true, ["ks"] = true, ["m"] = false, ["not"] = false, ["overrideType"] = "KeystoneTattoo", ["sd"] = { - [1] = "100% chance to Defend with 200% of Armour", - [2] = "Maximum Damage Reduction for any Damage Type is 50%", + [1] = "Cannot Recover Energy Shield to above Armour", + [2] = "3% of Physical Damage prevented from Hits Recently is Regenerated as Energy Shield per second", [3] = "Limited to 1 Keystone Tattoo", }, ["stats"] = { - ["keystone_sacred_bastion"] = { + ["keystone_divine_shield"] = { ["fmt"] = "d", ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 10961, + ["statOrder"] = 10936, }, }, ["targetType"] = "Keystone", ["targetValue"] = "", }, - ["Iron Grip"] = { + ["Eldritch Battery"] = { ["MaximumConnected"] = 100, ["MinimumConnected"] = 0, ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", - ["dn"] = "Iron Grip", - ["icon"] = "Art/2DArt/SkillIcons/passives/KeystoneIronGrip.png", - ["id"] = "iron_grip1181", + ["dn"] = "Eldritch Battery", + ["icon"] = "Art/2DArt/SkillIcons/passives/KeystoneEldritchBattery.png", + ["id"] = "eldritch_battery1142", ["isTattoo"] = true, ["ks"] = true, ["m"] = false, ["not"] = false, ["overrideType"] = "KeystoneTattoo", ["sd"] = { - [1] = "Strength's Damage bonus applies to Projectile Attack Damage as well as Melee Damage", - [2] = "Limited to 1 Keystone Tattoo", + [1] = "Spend Energy Shield before Mana for Skill Mana Costs", + [2] = "Energy Shield protects Mana instead of Life", + [3] = "50% less Energy Shield Recharge Rate", + [4] = "Limited to 1 Keystone Tattoo", }, ["stats"] = { - ["keystone_strong_bowman"] = { + ["keystone_eldritch_battery"] = { ["fmt"] = "d", ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 10886, + ["statOrder"] = 10877, }, }, ["targetType"] = "Keystone", ["targetValue"] = "", }, - ["Iron Reflexes"] = { + ["Elemental Equilibrium"] = { ["MaximumConnected"] = 100, ["MinimumConnected"] = 0, ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", - ["dn"] = "Iron Reflexes", - ["icon"] = "Art/2DArt/SkillIcons/passives/KeystoneIronReflexes.png", - ["id"] = "iron_reflexes1137", + ["dn"] = "Elemental Equilibrium", + ["icon"] = "Art/2DArt/SkillIcons/passives/KeystoneElementalEquilibrium.png", + ["id"] = "elemental_equilibrium1177", ["isTattoo"] = true, ["ks"] = true, ["m"] = false, ["not"] = false, ["overrideType"] = "KeystoneTattoo", ["sd"] = { - [1] = "Converts all Evasion Rating to Armour. Dexterity provides no bonus to Evasion Rating", - [2] = "Limited to 1 Keystone Tattoo", + [1] = "Hits that deal Elemental Damage remove Exposure to those Elements and inflict Exposure to other Elements", + [2] = "Exposure inflicted this way applies -25% to Resistances", + [3] = "Limited to 1 Keystone Tattoo", }, ["stats"] = { - ["keystone_iron_reflexes"] = { + ["keystone_elemental_equilibrium"] = { ["fmt"] = "d", ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 10875, + ["statOrder"] = 10892, }, }, ["targetType"] = "Keystone", ["targetValue"] = "", }, - ["Iron Will"] = { + ["Elemental Overload"] = { ["MaximumConnected"] = 100, ["MinimumConnected"] = 0, ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", - ["dn"] = "Iron Will", - ["icon"] = "Art/2DArt/SkillIcons/passives/KeystoneIronWill.png", - ["id"] = "iron_will_keystone2850", + ["dn"] = "Elemental Overload", + ["icon"] = "Art/2DArt/SkillIcons/passives/KeystoneElementalOverload.png", + ["id"] = "elemental_overload_keystone2152", ["isTattoo"] = true, ["ks"] = true, ["m"] = false, ["not"] = false, ["overrideType"] = "KeystoneTattoo", ["sd"] = { - [1] = "Strength's Damage bonus applies to all Spell Damage as well", - [2] = "Limited to 1 Keystone Tattoo", + [1] = "Skills that have dealt a Critical Strike in the past 8 seconds deal 40% more Elemental Damage with Hits and Ailments", + [2] = "Your Critical Strikes do not deal extra Damage", + [3] = "Ailments never count as being from Critical Strikes", + [4] = "Limited to 1 Keystone Tattoo", }, ["stats"] = { - ["strong_casting"] = { + ["keystone_elemental_overload"] = { ["fmt"] = "d", ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 10979, + ["statOrder"] = 10937, }, }, ["targetType"] = "Keystone", ["targetValue"] = "", }, - ["Journey Tattoo of the Body"] = { + ["Elementalist"] = { ["MaximumConnected"] = 100, ["MinimumConnected"] = 0, - ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/HinekoraPassiveBG.png", - ["dn"] = "Journey Tattoo of the Body", - ["icon"] = "Art/2DArt/SkillIcons/passives/HinekoraPassiveIcon1.png", - ["id"] = "UniqueNotableStr1", + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", + ["dn"] = "Elementalist", + ["icon"] = "Art/2DArt/SkillIcons/passives/Ascendants/Elementalist.png", + ["id"] = "AscendancyAscendant38", ["isTattoo"] = true, ["ks"] = false, - ["legacy"] = false, ["m"] = false, ["not"] = true, - ["overrideType"] = "HonouredHeartTattoo", + ["overrideType"] = "AscendancyTattooScion", ["sd"] = { - [1] = "+25 to maximum Life per Allocated Journey Tattoo of the Body", + [1] = "Shocks from your Hits always increase Damage taken by at least 10%", + [2] = "Cannot take Reflected Elemental Damage", + [3] = "Exposure you inflict applies an extra -20% to the affected Resistance", + [4] = "+1 to maximum number of Summoned Golems", + [5] = "Limited to 1 Ascendancy Tattoo", }, ["stats"] = { - ["maximum_life_per_honoured_heart_tattoo_allocated"] = { + ["base_number_of_golems_allowed"] = { ["fmt"] = "d", - ["max"] = 25, - ["min"] = 25, + ["index"] = 3, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 10909, + }, + ["cannot_take_reflected_elemental_damage"] = { + ["fmt"] = "d", + ["index"] = 4, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 5446, + }, + ["exposure_you_inflict_applies_extra_%_to_affected_resistance"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = -20, + ["min"] = -20, + ["statOrder"] = 6523, + }, + ["shock_minimum_damage_taken_increase_%"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 10, + ["min"] = 10, + ["statOrder"] = 4442, }, }, - ["targetType"] = "Notable", - ["targetValue"] = "+30 to Strength", + ["targetType"] = "Ascendancy Notable", + ["targetValue"] = "", }, - ["Journey Tattoo of the Mind"] = { + ["Endless Hunger"] = { ["MaximumConnected"] = 100, ["MinimumConnected"] = 0, - ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/HinekoraPassiveBG.png", - ["dn"] = "Journey Tattoo of the Mind", - ["icon"] = "Art/2DArt/SkillIcons/passives/HinekoraPassiveIcon2.png", - ["id"] = "UniqueNotableDex1", + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", + ["dn"] = "Endless Hunger", + ["icon"] = "Art/2DArt/SkillIcons/passives/Slayer/EndlessHunger.png", + ["id"] = "AscendancySlayer10", ["isTattoo"] = true, ["ks"] = false, - ["legacy"] = false, ["m"] = false, ["not"] = true, - ["overrideType"] = "HonouredMindTattoo", + ["overrideType"] = "AscendancyTattooDuelist", ["sd"] = { - [1] = "+30 to maximum Mana per Allocated Journey Tattoo of the Mind", + [1] = "20% of Overkill Damage is Leeched as Life", + [2] = "20% increased Attack Speed while Leeching", + [3] = "Cannot be Stunned while Leeching", + [4] = "You are Unaffected by Bleeding while Leeching", + [5] = "Limited to 1 Ascendancy Tattoo", }, ["stats"] = { - ["maximum_mana_per_honoured_mind_tattoo_allocated"] = { + ["attack_speed_+%_while_leeching"] = { ["fmt"] = "d", - ["max"] = 30, - ["min"] = 30, + ["index"] = 4, + ["max"] = 20, + ["min"] = 20, + ["statOrder"] = 3210, + }, + ["cannot_be_stunned_while_leeching"] = { + ["fmt"] = "d", + ["index"] = 3, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 3212, + }, + ["life_leech_on_overkill_damage_%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 20, + ["min"] = 20, + ["statOrder"] = 3209, + }, + ["unaffected_by_bleeding_while_leeching"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 10455, }, }, - ["targetType"] = "Notable", - ["targetValue"] = "+30 to Dexterity", + ["targetType"] = "Ascendancy Notable", + ["targetValue"] = "", }, - ["Journey Tattoo of the Soul"] = { + ["Endless Munitions"] = { ["MaximumConnected"] = 100, ["MinimumConnected"] = 0, - ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/HinekoraPassiveBG.png", - ["dn"] = "Journey Tattoo of the Soul", - ["icon"] = "Art/2DArt/SkillIcons/passives/HinekoraPassiveIcon3.png", - ["id"] = "UniqueNotableInt1", + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", + ["dn"] = "Endless Munitions", + ["icon"] = "Art/2DArt/SkillIcons/passives/Additionalprojectile.png", + ["id"] = "AscendancyDeadeye6", ["isTattoo"] = true, ["ks"] = false, - ["legacy"] = false, ["m"] = false, ["not"] = true, - ["overrideType"] = "HonouredSoulTattoo", + ["overrideType"] = "AscendancyTattooRanger", ["sd"] = { - [1] = "+40 to maximum Energy Shield per Allocated Journey Tattoo of the Soul", + [1] = "Skills fire 2 additional Projectiles", + [2] = "Limited to 1 Ascendancy Tattoo", }, ["stats"] = { - ["maximum_es_per_honoured_soul_tattoo_allocated"] = { + ["number_of_additional_projectiles"] = { ["fmt"] = "d", - ["max"] = 40, - ["min"] = 40, + ["index"] = 1, + ["max"] = 2, + ["min"] = 2, + ["statOrder"] = 10908, }, }, - ["targetType"] = "Notable", - ["targetValue"] = "+30 to Intelligence", + ["targetType"] = "Ascendancy Notable", + ["targetValue"] = "", }, - ["Lethe Shade"] = { + ["Enduring Suffusion"] = { ["MaximumConnected"] = 100, ["MinimumConnected"] = 0, ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", - ["dn"] = "Lethe Shade", - ["icon"] = "Art/2DArt/SkillIcons/passives/MomentofRespite.png", - ["id"] = "respite_keystone2855", + ["dn"] = "Enduring Suffusion", + ["icon"] = "Art/2DArt/SkillIcons/passives/Warden/WardenSaps3.png", + ["id"] = "AscendancyRaider18", ["isTattoo"] = true, - ["ks"] = true, + ["ks"] = false, ["m"] = false, - ["not"] = false, - ["overrideType"] = "KeystoneTattoo", + ["not"] = true, + ["overrideType"] = "AscendancyTattooRanger", ["sd"] = { - [1] = "Take 50% less Damage over Time if you've started taking Damage over Time in the past second", - [2] = "100% more Duration of Ailments on you", - [3] = "Limited to 1 Keystone Tattoo", + [1] = "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", + [2] = "Tinctures applied to you have 30% less Mana Burn rate", + [3] = "Limited to 1 Ascendancy Tattoo", }, ["stats"] = { - ["keystone_lethe_shade"] = { - ["fmt"] = "d", + ["tincture_effects_linger_for_ms_per_toxicity_up_to_6_seconds"] = { + ["fmt"] = "g", ["index"] = 1, - ["max"] = 1, - ["min"] = 1, - ["statOrder"] = 10947, + ["max"] = 0.5, + ["min"] = 0.5, + ["statOrder"] = 10379, + }, + ["warden_tincture_toxicity_rate_+%_final"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 30, + ["min"] = 30, + ["statOrder"] = 10583, }, }, - ["targetType"] = "Keystone", + ["targetType"] = "Ascendancy Notable", ["targetValue"] = "", }, - ["Loyalty Tattoo of Ahuana"] = { + ["Escape Artist"] = { ["MaximumConnected"] = 100, ["MinimumConnected"] = 0, - ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/RamakoTribePassiveBG.png", - ["dn"] = "Loyalty Tattoo of Ahuana", - ["icon"] = "Art/2DArt/SkillIcons/RamakoTribeSkill.png", - ["id"] = "Ramako6", + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", + ["dn"] = "Escape Artist", + ["icon"] = "Art/2DArt/SkillIcons/passives/Trickster/HeedfulRecovery.png", + ["id"] = "AscendancyTrickster8", ["isTattoo"] = true, ["ks"] = false, - ["legacy"] = true, ["m"] = false, - ["not"] = false, - ["overrideType"] = "UnknownTattoo", + ["not"] = true, + ["overrideType"] = "AscendancyTattooShadow", ["sd"] = { - [1] = "Trigger level 1 Summon Spirit of Ahuana Skill when you Suppress", - [2] = "Spell Damage from a Unique Enemy", - [3] = "Limited to 1 Loyalty Tattoo", + [1] = "+4 to Evasion Rating per 1 Maximum Energy Shield on Equipped Helmet", + [2] = "+1 to maximum Energy Shield per 8 Evasion Rating on Equipped Body Armour", + [3] = "Limited to 1 Ascendancy Tattoo", }, ["stats"] = { - ["has_trigger_on_suppress_hit_from_unique"] = { - ["max"] = 1, - ["min"] = 1, + ["evasion_rating_+_per_1_helmet_energy_shield"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 4, + ["min"] = 4, + ["statOrder"] = 1547, }, - ["local_display_tattoo_trigger_level_x_ahuana"] = { + ["maximum_energy_shield_+_per_X_body_armour_evasion_rating"] = { ["fmt"] = "d", - ["max"] = 1, - ["min"] = 1, + ["index"] = 2, + ["max"] = 8, + ["min"] = 8, + ["statOrder"] = 1567, }, }, - ["targetType"] = "Small Dexterity", + ["targetType"] = "Ascendancy Notable", ["targetValue"] = "", }, - ["Loyalty Tattoo of Akoya"] = { + ["Essence Glutton"] = { ["MaximumConnected"] = 100, ["MinimumConnected"] = 0, - ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/TukohamaTribePassiveBG.png", - ["dn"] = "Loyalty Tattoo of Akoya", - ["icon"] = "Art/2DArt/SkillIcons/TukohamaTribeSkill.png", - ["id"] = "Tukohama6", + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", + ["dn"] = "Essence Glutton", + ["icon"] = "Art/2DArt/SkillIcons/passives/Necromancer/EssenceGlutton.png", + ["id"] = "AscendancyNecromancer11", ["isTattoo"] = true, ["ks"] = false, - ["legacy"] = true, ["m"] = false, - ["not"] = false, - ["overrideType"] = "UnknownTattoo", + ["not"] = true, + ["overrideType"] = "AscendancyTattooWitch", ["sd"] = { - [1] = "Trigger level 1 Summon Spirit of Akoya Skill when you reach Maximum Rage while", - [2] = "a Unique Enemy is in your Presence", - [3] = "Limited to 1 Loyalty Tattoo", + [1] = "For each nearby corpse, you and nearby Allies Regenerate 0.2% of Energy Shield per second, up to 2.0% per second", + [2] = "For each nearby corpse, you and nearby Allies Regenerate 5 Mana", + [3] = "per second, up to 50 per second", + [4] = "Regenerate 8% of Energy Shield over 2 seconds when you Consume a corpse", + [5] = "Regenerate 4% of Mana over 2 seconds when you Consume a corpse", + [6] = "Limited to 1 Ascendancy Tattoo", }, ["stats"] = { - ["has_trigger_on_reaching_maximum_rage_in_presence_of_unique"] = { - ["max"] = 1, - ["min"] = 1, + ["necromancer_energy_shield_regeneration_rate_per_minute_%_for_you_and_allies_per_nearby_corpse"] = { + ["fmt"] = "g", + ["index"] = 4, + ["max"] = 0.2, + ["min"] = 0.2, + ["statOrder"] = 9470, }, - ["local_display_tattoo_trigger_level_x_akoya"] = { + ["necromancer_mana_regeneration_rate_per_minute_for_you_and_allies_per_nearby_corpse"] = { + ["fmt"] = "g", + ["index"] = 3, + ["max"] = 5, + ["min"] = 5, + ["statOrder"] = 9471, + }, + ["regenerate_%_maximum_energy_shield_over_2_seconds_on_consuming_corpse"] = { ["fmt"] = "d", - ["max"] = 1, - ["min"] = 1, + ["index"] = 2, + ["max"] = 8, + ["min"] = 8, + ["statOrder"] = 9896, + }, + ["regenerate_%_maximum_mana_over_2_seconds_on_consuming_corpse"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 4, + ["min"] = 4, + ["statOrder"] = 9897, }, }, - ["targetType"] = "Small Strength", + ["targetType"] = "Ascendancy Notable", ["targetValue"] = "", }, - ["Loyalty Tattoo of Ikiaho"] = { + ["Eternal Youth"] = { ["MaximumConnected"] = 100, ["MinimumConnected"] = 0, - ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/ArohonguiTribePassiveBG.png", - ["dn"] = "Loyalty Tattoo of Ikiaho", - ["icon"] = "Art/2DArt/SkillIcons/ArohonguiTribeSkill.png", - ["id"] = "Arohongui6", + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", + ["dn"] = "Eternal Youth", + ["icon"] = "Art/2DArt/SkillIcons/passives/EternalYouth.png", + ["id"] = "eternal_youth_keytone2692", ["isTattoo"] = true, - ["ks"] = false, - ["legacy"] = true, + ["ks"] = true, ["m"] = false, ["not"] = false, - ["overrideType"] = "UnknownTattoo", + ["overrideType"] = "KeystoneTattoo", ["sd"] = { - [1] = "Trigger level 1 Summon Spirit of Ikiaho Skill when you use a Travel", - [2] = "Skill while a Unique Enemy is in your Presence", - [3] = "Limited to 1 Loyalty Tattoo", + [1] = "50% less Life Regeneration Rate", + [2] = "50% less maximum Total Life Recovery per Second from Leech", + [3] = "Energy Shield Recharge instead applies to Life", + [4] = "Limited to 1 Keystone Tattoo", }, ["stats"] = { - ["has_trigger_on_travel_skill_use_in_presence_of_unique"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["local_display_tattoo_trigger_level_x_ikiaho"] = { + ["keystone_eternal_youth"] = { ["fmt"] = "d", + ["index"] = 1, ["max"] = 1, ["min"] = 1, + ["statOrder"] = 10939, }, }, - ["targetType"] = "Small Dexterity", + ["targetType"] = "Keystone", ["targetValue"] = "", }, - ["Loyalty Tattoo of Kahuturoa"] = { + ["Experienced Herbalist"] = { ["MaximumConnected"] = 100, ["MinimumConnected"] = 0, - ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/RongokuraiTribePassiveBG.png", - ["dn"] = "Loyalty Tattoo of Kahuturoa", - ["icon"] = "Art/2DArt/SkillIcons/RongokuraiTribeSkill.png", - ["id"] = "Rongokurai6", + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", + ["dn"] = "Experienced Herbalist", + ["icon"] = "Art/2DArt/SkillIcons/passives/Warden/WardenSaps2.png", + ["id"] = "AscendancyRaider17", ["isTattoo"] = true, ["ks"] = false, - ["legacy"] = true, ["m"] = false, - ["not"] = false, - ["overrideType"] = "UnknownTattoo", + ["not"] = true, + ["overrideType"] = "AscendancyTattooRanger", ["sd"] = { - [1] = "Trigger level 1 Summon Spirit of Kahuturoa Skill when you take", - [2] = "a Critical Strike from a Unique Enemy", - [3] = "Limited to 1 Loyalty Tattoo", + [1] = "You can have an additional Tincture active", + [2] = "Limited to 1 Ascendancy Tattoo", }, ["stats"] = { - ["has_trigger_on_crit_by_unique_enemy"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["local_display_tattoo_trigger_level_x_kahuturoa"] = { + ["can_apply_additional_tincture"] = { ["fmt"] = "d", + ["index"] = 1, ["max"] = 1, ["min"] = 1, + ["statOrder"] = 5384, }, }, - ["targetType"] = "Small Strength", + ["targetType"] = "Ascendancy Notable", ["targetValue"] = "", }, - ["Loyalty Tattoo of Kaom"] = { + ["Far Shot"] = { ["MaximumConnected"] = 100, ["MinimumConnected"] = 0, - ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/NgamahuTribePassiveBG.png", - ["dn"] = "Loyalty Tattoo of Kaom", - ["icon"] = "Art/2DArt/SkillIcons/NgamahuTribeSkill.png", - ["id"] = "Ngamahu6", + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", + ["dn"] = "Far Shot", + ["icon"] = "Art/2DArt/SkillIcons/passives/DeadEye/FarShot.png", + ["id"] = "AscendancyDeadeye8", ["isTattoo"] = true, ["ks"] = false, - ["legacy"] = true, ["m"] = false, - ["not"] = false, - ["overrideType"] = "UnknownTattoo", + ["not"] = true, + ["overrideType"] = "AscendancyTattooRanger", ["sd"] = { - [1] = "Trigger level 1 Summon Spirit of Kaom Skill when a Totem dies while", - [2] = "a Unique Enemy is in your Presence", - [3] = "Limited to 1 Loyalty Tattoo", + [1] = "Projectiles gain Damage as they travel farther, dealing up", + [2] = "to 30% more Damage with Hits and Ailments", + [3] = "Projectile Barrages have no spread", + [4] = "Limited to 1 Ascendancy Tattoo", }, ["stats"] = { - ["has_trigger_on_totem_death_in_presence_of_unique"] = { - ["max"] = 1, - ["min"] = 1, + ["deadeye_projectile_damage_+%_final_max_as_distance_travelled_increases"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 30, + ["min"] = 30, + ["statOrder"] = 6135, }, - ["local_display_tattoo_trigger_level_x_kaom"] = { + ["no_barrage_projectile_spread"] = { ["fmt"] = "d", + ["index"] = 2, ["max"] = 1, ["min"] = 1, + ["statOrder"] = 10923, }, }, - ["targetType"] = "Small Strength", + ["targetType"] = "Ascendancy Notable", ["targetValue"] = "", }, - ["Loyalty Tattoo of Kiloava"] = { + ["First to Strike, Last to Fall"] = { ["MaximumConnected"] = 100, ["MinimumConnected"] = 0, - ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/ValakoTribePassiveBG.png", - ["dn"] = "Loyalty Tattoo of Kiloava", - ["icon"] = "Art/2DArt/SkillIcons/ValakoTribeSkill.png", - ["id"] = "Valako6", + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", + ["dn"] = "First to Strike, Last to Fall", + ["icon"] = "Art/2DArt/SkillIcons/passives/Champion/FirstStrikeLastFall.png", + ["id"] = "AscendancyChampion12", ["isTattoo"] = true, ["ks"] = false, - ["legacy"] = true, ["m"] = false, - ["not"] = false, - ["overrideType"] = "UnknownTattoo", + ["not"] = true, + ["overrideType"] = "AscendancyTattooDuelist", ["sd"] = { - [1] = "Trigger level 1 Summon Spirit of Kiloava Skill when you Block Damage from a Unique Enemy", - [2] = "Limited to 1 Loyalty Tattoo", + [1] = "Your Hits permanently Intimidate Enemies that are on Full Life", + [2] = "Gain Adrenaline for 20 seconds when you reach Low Life", + [3] = "Recover 25% of Life when you gain Adrenaline", + [4] = "Remove all Ailments and Burning when you gain Adrenaline", + [5] = "Limited to 1 Ascendancy Tattoo", }, ["stats"] = { - ["has_trigger_on_block_hit_from_unique"] = { + ["gain_adrenaline_for_X_seconds_on_low_life_unless_you_have_adrenaline"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 20, + ["min"] = 20, + ["statOrder"] = 6716, + }, + ["permanently_intimidate_enemies_you_hit_on_full_life"] = { + ["fmt"] = "d", + ["index"] = 1, ["max"] = 1, ["min"] = 1, + ["statOrder"] = 4255, }, - ["local_display_tattoo_trigger_level_x_kiloava"] = { + ["recover_%_life_when_gaining_adrenaline"] = { + ["fmt"] = "d", + ["index"] = 4, + ["max"] = 25, + ["min"] = 25, + ["statOrder"] = 9859, + }, + ["remove_ailments_and_burning_on_gaining_adrenaline"] = { ["fmt"] = "d", + ["index"] = 3, ["max"] = 1, ["min"] = 1, + ["statOrder"] = 9899, }, }, - ["targetType"] = "Small Intelligence", + ["targetType"] = "Ascendancy Notable", ["targetValue"] = "", }, - ["Loyalty Tattoo of Maata"] = { + ["Focal Point"] = { ["MaximumConnected"] = 100, ["MinimumConnected"] = 0, - ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/TawhoaTribePassiveBG.png", - ["dn"] = "Loyalty Tattoo of Maata", - ["icon"] = "Art/2DArt/SkillIcons/TawhoaTribeSkill.png", - ["id"] = "Tawhoa6", + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", + ["dn"] = "Focal Point", + ["icon"] = "Art/2DArt/SkillIcons/passives/Mark.png", + ["id"] = "AscendancyDeadeye2", ["isTattoo"] = true, ["ks"] = false, - ["legacy"] = true, ["m"] = false, - ["not"] = false, - ["overrideType"] = "UnknownTattoo", + ["not"] = true, + ["overrideType"] = "AscendancyTattooRanger", ["sd"] = { - [1] = "Trigger level 1 Summon Spirit of Maata Skill when you reach Low Life while", - [2] = "a Unique Enemy is in your Presence", - [3] = "Limited to 1 Loyalty Tattoo", + [1] = "75% increased Effect of your Marks", + [2] = "25% less Damage taken from other Enemies near your Marked Enemy", + [3] = "Your Mark Transfers to another Enemy when Marked Enemy dies", + [4] = "Limited to 1 Ascendancy Tattoo", }, ["stats"] = { - ["has_trigger_on_reaching_low_life_in_presence_of_unique"] = { - ["max"] = 1, - ["min"] = 1, + ["damage_taken_+%_final_from_enemies_near_marked_enemy"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 25, + ["min"] = 25, + ["statOrder"] = 6114, }, - ["local_display_tattoo_trigger_level_x_maata"] = { + ["mark_skills_curse_effect_+%"] = { ["fmt"] = "d", - ["max"] = 1, - ["min"] = 1, + ["index"] = 1, + ["max"] = 75, + ["min"] = 75, + ["statOrder"] = 2598, + }, + ["your_marks_transfer_to_nearby_enemies_on_death_%_chance"] = { + ["fmt"] = "d", + ["index"] = 3, + ["max"] = 100, + ["min"] = 100, + ["statOrder"] = 10691, }, }, - ["targetType"] = "Small Intelligence", + ["targetType"] = "Ascendancy Notable", ["targetValue"] = "", }, - ["Loyalty Tattoo of Rakiata"] = { + ["For the Jugular"] = { ["MaximumConnected"] = 100, ["MinimumConnected"] = 0, - ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/TasalioTribePassiveBG.png", - ["dn"] = "Loyalty Tattoo of Rakiata", - ["icon"] = "Art/2DArt/SkillIcons/TasalioTribeSkill.png", - ["id"] = "Tasalio6", + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", + ["dn"] = "For the Jugular", + ["icon"] = "Art/2DArt/SkillIcons/passives/Assassin/Ambush.png", + ["id"] = "AscendancyAssassin18", ["isTattoo"] = true, ["ks"] = false, - ["legacy"] = true, ["m"] = false, - ["not"] = false, - ["overrideType"] = "UnknownTattoo", + ["not"] = true, + ["overrideType"] = "AscendancyTattooShadow", ["sd"] = { - [1] = "Trigger level 1 Summon Spirit of Rakiata Skill on Critical Strike against Marked Unique Enemy", - [2] = "Limited to 1 Loyalty Tattoo", + [1] = "+100% to Critical Strike Multiplier against Enemies that are not on Low Life", + [2] = "100% more Critical Strike Chance against Enemies that are on Low Life", + [3] = "Critical Strikes have Culling Strike", + [4] = "Limited to 1 Ascendancy Tattoo", }, ["stats"] = { - ["has_trigger_on_crit_vs_marked_unique"] = { - ["max"] = 1, - ["min"] = 1, + ["assassin_critical_strike_multiplier_+_vs_enemies_not_on_low_life"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 100, + ["min"] = 100, + ["statOrder"] = 3437, }, - ["local_display_tattoo_trigger_level_x_rakiata"] = { + ["assassinate_passive_critical_strike_chance_vs_enemies_on_low_life_+%_final"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 100, + ["min"] = 100, + ["statOrder"] = 3439, + }, + ["crits_have_culling_strike"] = { ["fmt"] = "d", + ["index"] = 3, ["max"] = 1, ["min"] = 1, + ["statOrder"] = 3440, }, }, - ["targetType"] = "Small Dexterity", + ["targetType"] = "Ascendancy Notable", ["targetValue"] = "", }, - ["Loyalty Tattoo of Tawhanuku"] = { + ["Forbidden Power"] = { ["MaximumConnected"] = 100, ["MinimumConnected"] = 0, - ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/HinekoraTribePassiveBG.png", - ["dn"] = "Loyalty Tattoo of Tawhanuku", - ["icon"] = "Art/2DArt/SkillIcons/HinekoraTribeSkill.png", - ["id"] = "Hinekora6", + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", + ["dn"] = "Forbidden Power", + ["icon"] = "Art/2DArt/SkillIcons/passives/Occultist/VowOfDamnation.png", + ["id"] = "AscendancyOccultist12", ["isTattoo"] = true, ["ks"] = false, - ["legacy"] = true, ["m"] = false, - ["not"] = false, - ["overrideType"] = "UnknownTattoo", + ["not"] = true, + ["overrideType"] = "AscendancyTattooWitch", ["sd"] = { - [1] = "Trigger level 1 Summon Spirit of Tawhanuku Skill when Energy Shield Recharge starts while a Unique Enemy is in your Presence", - [2] = "Limited to 1 Loyalty Tattoo", + [1] = "6% increased Area of Effect per Power Charge", + [2] = "6% increased Damage per Power Charge", + [3] = "Gain a Power Charge after Spending a total of 200 Mana", + [4] = "+1 to Maximum Power Charges", + [5] = "Limited to 1 Ascendancy Tattoo", }, ["stats"] = { - ["has_trigger_on_es_recharge_in_presence_of_unique"] = { - ["max"] = 1, - ["min"] = 1, + ["damage_+%_per_power_charge"] = { + ["fmt"] = "d", + ["index"] = 3, + ["max"] = 6, + ["min"] = 6, + ["statOrder"] = 6066, }, - ["local_display_tattoo_trigger_level_x_tawhanuku"] = { + ["local_display_gain_power_charge_on_spending_mana"] = { + ["fmt"] = "d", + ["index"] = 4, + ["max"] = 200, + ["min"] = 200, + ["statOrder"] = 7893, + }, + ["max_power_charges"] = { ["fmt"] = "d", + ["index"] = 1, ["max"] = 1, ["min"] = 1, + ["statOrder"] = 10872, + }, + ["skill_area_of_effect_+%_per_power_charge"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 6, + ["min"] = 6, + ["statOrder"] = 2129, }, }, - ["targetType"] = "Small Intelligence", + ["targetType"] = "Ascendancy Notable", ["targetValue"] = "", }, - ["Loyalty Tattoo of Utula"] = { + ["Fortitude"] = { ["MaximumConnected"] = 100, ["MinimumConnected"] = 0, - ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KitavaTribePassiveBG.png", - ["dn"] = "Loyalty Tattoo of Utula", - ["icon"] = "Art/2DArt/SkillIcons/KitavaTribeSkill.png", - ["id"] = "Kitava6", + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", + ["dn"] = "Fortitude", + ["icon"] = "Art/2DArt/SkillIcons/passives/Champion/Fortitude.png", + ["id"] = "AscendancyChampion7", ["isTattoo"] = true, ["ks"] = false, - ["legacy"] = true, ["m"] = false, - ["not"] = false, - ["overrideType"] = "UnknownTattoo", + ["not"] = true, + ["overrideType"] = "AscendancyTattooDuelist", ["sd"] = { - [1] = "Trigger level 1 Summon Spirit of Utula Skill on taking a Savage Hit from a Unique Enemy", - [2] = "Limited to 1 Loyalty Tattoo", + [1] = "Nearby Allies count as having Fortification equal to yours", + [2] = "You have your maximum Fortification", + [3] = "Limited to 1 Ascendancy Tattoo", }, ["stats"] = { - ["has_trigger_on_taking_savage_hit_from_unique"] = { + ["champion_ascendancy_nearby_allies_fortification_is_equal_to_yours"] = { + ["fmt"] = "d", + ["index"] = 2, ["max"] = 1, ["min"] = 1, + ["statOrder"] = 5487, }, - ["local_display_tattoo_trigger_level_x_utula"] = { + ["you_have_your_maximum_fortification"] = { ["fmt"] = "d", + ["index"] = 1, ["max"] = 1, ["min"] = 1, + ["statOrder"] = 10665, }, }, - ["targetType"] = "Small Strength", + ["targetType"] = "Ascendancy Notable", ["targetValue"] = "", }, - ["Magebane"] = { + ["Frigid Wake"] = { ["MaximumConnected"] = 100, ["MinimumConnected"] = 0, ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", - ["dn"] = "Magebane", - ["icon"] = "Art/2DArt/SkillIcons/passives/Deaden.png", - ["id"] = "deaden_keystone2849", + ["dn"] = "Frigid Wake", + ["icon"] = "Art/2DArt/SkillIcons/passives/Occultist/FrigidWake.png", + ["id"] = "AscendancyOccultist16", ["isTattoo"] = true, - ["ks"] = true, + ["ks"] = false, ["m"] = false, - ["not"] = false, - ["overrideType"] = "KeystoneTattoo", + ["not"] = true, + ["overrideType"] = "AscendancyTattooWitch", ["sd"] = { - [1] = "Dexterity provides no inherent bonus to Evasion Rating", - [2] = "+1% Chance to Suppress Spell Damage per 15 Dexterity", - [3] = "Limited to 1 Keystone Tattoo", + [1] = "Cannot be Chilled", + [2] = "Cannot be Frozen", + [3] = "15% more Cold Damage", + [4] = "Limited to 1 Ascendancy Tattoo", }, ["stats"] = { - ["keystone_magebane"] = { + ["base_cannot_be_chilled"] = { ["fmt"] = "d", - ["index"] = 1, + ["index"] = 2, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 10948, + ["statOrder"] = 1837, + }, + ["base_cannot_be_frozen"] = { + ["fmt"] = "d", + ["index"] = 3, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 1838, + }, + ["occultist_cold_damage_+%_final"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 15, + ["min"] = 15, + ["statOrder"] = 9543, }, }, - ["targetType"] = "Keystone", + ["targetType"] = "Ascendancy Notable", ["targetValue"] = "", }, - ["Mind Over Matter"] = { + ["Gathering Winds"] = { ["MaximumConnected"] = 100, ["MinimumConnected"] = 0, ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", - ["dn"] = "Mind Over Matter", - ["icon"] = "Art/2DArt/SkillIcons/passives/heroicspirit.png", - ["id"] = "mana_shield1544", + ["dn"] = "Gathering Winds", + ["icon"] = "Art/2DArt/SkillIcons/passives/DeadEye/GatherWinds.png", + ["id"] = "AscendancyDeadeye14", ["isTattoo"] = true, - ["ks"] = true, + ["ks"] = false, ["m"] = false, - ["not"] = false, - ["overrideType"] = "KeystoneTattoo", + ["not"] = true, + ["overrideType"] = "AscendancyTattooRanger", ["sd"] = { - [1] = "40% of Damage is taken from Mana before Life", - [2] = "Limited to 1 Keystone Tattoo", + [1] = "Gain 1 Gale Force when you use a Skill", + [2] = "10% increased Effect of Tailwind on you per Gale Force", + [3] = "Limited to 1 Ascendancy Tattoo", }, ["stats"] = { - ["keystone_mana_shield"] = { + ["tailwind_effect_on_self_+%_per_gale_force"] = { ["fmt"] = "d", ["index"] = 1, - ["max"] = 1, - ["min"] = 1, - ["statOrder"] = 10900, + ["max"] = 10, + ["min"] = 10, + ["statOrder"] = 10348, }, }, - ["targetType"] = "Keystone", + ["targetType"] = "Ascendancy Notable", ["targetValue"] = "", }, - ["Minion Instability"] = { + ["Ghost Dance"] = { ["MaximumConnected"] = 100, ["MinimumConnected"] = 0, ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", - ["dn"] = "Minion Instability", - ["icon"] = "Art/2DArt/SkillIcons/passives/KeystoneMinionInstability.png", - ["id"] = "minion_instability1133", + ["dn"] = "Ghost Dance", + ["icon"] = "Art/2DArt/SkillIcons/passives/Trickster/AcrobaticWillpower.png", + ["id"] = "ghost_dance_keystone2852_", ["isTattoo"] = true, ["ks"] = true, ["m"] = false, ["not"] = false, ["overrideType"] = "KeystoneTattoo", ["sd"] = { - [1] = "Minions Explode when reduced to Low Life, dealing 33% of their Life as Fire Damage to surrounding Enemies", - [2] = "Limited to 1 Keystone Tattoo", + [1] = "Cannot Recover Energy Shield to above Evasion Rating", + [2] = "Every 2 seconds, gain a Ghost Shroud, up to a maximum of 3", + [3] = "When Hit, lose a Ghost Shroud to Recover Energy Shield equal to 3% of your Evasion Rating", + [4] = "Limited to 1 Keystone Tattoo", }, ["stats"] = { - ["keystone_minion_instability"] = { + ["keystone_ghost_dance"] = { ["fmt"] = "d", ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 10891, + ["statOrder"] = 10941, }, }, ["targetType"] = "Keystone", ["targetValue"] = "", }, - ["Necromantic Aegis"] = { + ["Ghost Reaver"] = { ["MaximumConnected"] = 100, ["MinimumConnected"] = 0, ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", - ["dn"] = "Necromantic Aegis", - ["icon"] = "Art/2DArt/SkillIcons/passives/KeystoneNecromanticAegis.png", - ["id"] = "necromantic_aegis1175", + ["dn"] = "Ghost Reaver", + ["icon"] = "Art/2DArt/SkillIcons/passives/ghostreaver.png", + ["id"] = "ghost_reaver1306", ["isTattoo"] = true, ["ks"] = true, ["m"] = false, ["not"] = false, ["overrideType"] = "KeystoneTattoo", ["sd"] = { - [1] = "All bonuses from an Equipped Shield apply to your Minions instead of you", - [2] = "Limited to 1 Keystone Tattoo", + [1] = "Leech Energy Shield instead of Life", + [2] = "Maximum total Energy Shield Recovery per second from Leech is doubled", + [3] = "Cannot Recharge Energy Shield", + [4] = "Limited to 1 Keystone Tattoo", }, ["stats"] = { - ["minions_get_shield_stats_instead_of_you"] = { + ["keystone_ghost_reaver"] = { ["fmt"] = "d", ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 2192, + ["statOrder"] = 10942, }, }, ["targetType"] = "Keystone", ["targetValue"] = "", }, - ["Pain Attunement"] = { + ["Gladiator"] = { ["MaximumConnected"] = 100, ["MinimumConnected"] = 0, ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", - ["dn"] = "Pain Attunement", - ["icon"] = "Art/2DArt/SkillIcons/passives/KeystonePainAttunement.png", - ["id"] = "pain_attunement1178", + ["dn"] = "Gladiator", + ["icon"] = "Art/2DArt/SkillIcons/passives/Ascendants/Gladiator.png", + ["id"] = "AscendancyAscendant41", ["isTattoo"] = true, - ["ks"] = true, + ["ks"] = false, ["m"] = false, - ["not"] = false, - ["overrideType"] = "KeystoneTattoo", + ["not"] = true, + ["overrideType"] = "AscendancyTattooScion", ["sd"] = { - [1] = "30% more Spell Damage when on Low Life", - [2] = "Limited to 1 Keystone Tattoo", + [1] = "25% chance to Aggravate Bleeding on targets you Hit with Attacks", + [2] = "Gain 50% Chance to Block from Equipped Shield instead of the Shield's value", + [3] = "Inherent Bonuses from Dual Wielding are doubled", + [4] = "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%", + [5] = "Limited to 1 Ascendancy Tattoo", }, ["stats"] = { - ["keystone_pain_attunement"] = { + ["base_aggravate_bleeding_on_attack_hit_chance_%"] = { + ["fmt"] = "d", + ["index"] = 3, + ["max"] = 25, + ["min"] = 25, + ["statOrder"] = 4608, + }, + ["block_chance_from_equipped_shield_is_%"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 50, + ["min"] = 50, + ["statOrder"] = 5228, + }, + ["dual_wield_inherent_bonuses_are_doubled"] = { ["fmt"] = "d", ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 10885, + ["statOrder"] = 6282, + }, + ["gladiator_damage_vs_rare_unique_enemies_+%_final_per_2_seconds_in_your_presence_up_to_50%"] = { + ["fmt"] = "d", + ["index"] = 4, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 6868, }, }, - ["targetType"] = "Keystone", + ["targetType"] = "Ascendancy Notable", ["targetValue"] = "", }, - ["Perfect Agony"] = { + ["Glancing Blows"] = { ["MaximumConnected"] = 100, ["MinimumConnected"] = 0, ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", - ["dn"] = "Perfect Agony", - ["icon"] = "Art/2DArt/SkillIcons/passives/CritAilments.png", - ["id"] = "damage_ailment_critical_keystone_2182", + ["dn"] = "Glancing Blows", + ["icon"] = "Art/2DArt/SkillIcons/passives/GlancingBlows.png", + ["id"] = "glancing_blows_keystone2693", ["isTattoo"] = true, ["ks"] = true, ["m"] = false, ["not"] = false, ["overrideType"] = "KeystoneTattoo", ["sd"] = { - [1] = "Damage over Time Multiplier for Ailments is equal to Critical Strike Multiplier", - [2] = "Critical Strikes do not deal extra Damage", - [3] = "Non-Critical Strikes cannot inflict Ailments", + [1] = "Chance to Block Attack Damage is doubled", + [2] = "Chance to Block Spell Damage is doubled", + [3] = "You take 65% of Damage from Blocked Hits", [4] = "Limited to 1 Keystone Tattoo", }, ["stats"] = { - ["keystone_ailment_crit"] = { + ["keystone_glancing_blows"] = { ["fmt"] = "d", ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 10929, + ["statOrder"] = 10943, }, }, ["targetType"] = "Keystone", ["targetValue"] = "", }, - ["Point Blank"] = { + ["Gore Dancer"] = { ["MaximumConnected"] = 100, ["MinimumConnected"] = 0, ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", - ["dn"] = "Point Blank", - ["icon"] = "Art/2DArt/SkillIcons/passives/KeystonePointBlankArcher.png", - ["id"] = "point_blank1182", + ["dn"] = "Gore Dancer", + ["icon"] = "Art/2DArt/SkillIcons/passives/Berserker/CloakedAgony.png", + ["id"] = "AscendancyBerserker14", ["isTattoo"] = true, - ["ks"] = true, + ["ks"] = false, ["m"] = false, - ["not"] = false, - ["overrideType"] = "KeystoneTattoo", + ["not"] = true, + ["overrideType"] = "AscendancyTattooMarauder", ["sd"] = { - [1] = "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", - [2] = "Limited to 1 Keystone Tattoo", + [1] = "30% of Life Leech is Instant", + [2] = "Limited to 1 Ascendancy Tattoo", }, ["stats"] = { - ["keystone_point_blank"] = { + ["life_leech_%_is_instant"] = { ["fmt"] = "d", ["index"] = 1, - ["max"] = 1, - ["min"] = 1, - ["statOrder"] = 10887, + ["max"] = 30, + ["min"] = 30, + ["statOrder"] = 7376, }, }, - ["targetType"] = "Keystone", + ["targetType"] = "Ascendancy Notable", ["targetValue"] = "", }, - ["Precise Technique"] = { + ["Gratuitous Violence"] = { ["MaximumConnected"] = 100, ["MinimumConnected"] = 0, ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", - ["dn"] = "Precise Technique", - ["icon"] = "Art/2DArt/SkillIcons/passives/PreciseTechnique.png", - ["id"] = "verdant_precision_keystone2858", + ["dn"] = "Gratuitous Violence", + ["icon"] = "Art/2DArt/SkillIcons/passives/Gladiator/GLADViolence.png", + ["id"] = "AscendancyGladiator7", ["isTattoo"] = true, - ["ks"] = true, + ["ks"] = false, ["m"] = false, - ["not"] = false, - ["overrideType"] = "KeystoneTattoo", + ["not"] = true, + ["overrideType"] = "AscendancyTattooDuelist", ["sd"] = { - [1] = "40% more Attack Damage if Accuracy Rating is higher than Maximum Life", - [2] = "Never deal Critical Strikes", - [3] = "Limited to 1 Keystone Tattoo", + [1] = "Bleeding Enemies you Kill Explode, dealing 20% of", + [2] = "their Maximum Life as Physical Damage", + [3] = "Limited to 1 Ascendancy Tattoo", }, ["stats"] = { - ["keystone_precise_technique"] = { + ["bleeding_enemies_explode_for_%_life_as_physical_damage"] = { ["fmt"] = "d", ["index"] = 1, - ["max"] = 1, - ["min"] = 1, - ["statOrder"] = 10955, + ["max"] = 20, + ["min"] = 20, + ["statOrder"] = 3481, }, }, - ["targetType"] = "Keystone", + ["targetType"] = "Ascendancy Notable", ["targetValue"] = "", }, - ["Resolute Technique"] = { + ["Guardian"] = { ["MaximumConnected"] = 100, ["MinimumConnected"] = 0, ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", - ["dn"] = "Resolute Technique", - ["icon"] = "Art/2DArt/SkillIcons/passives/KeystoneResoluteTechnique.png", - ["id"] = "resolute_technique1138", + ["dn"] = "Guardian", + ["icon"] = "Art/2DArt/SkillIcons/passives/Ascendants/Guardian.png", + ["id"] = "AscendancyAscendant45", ["isTattoo"] = true, - ["ks"] = true, + ["ks"] = false, ["m"] = false, - ["not"] = false, - ["overrideType"] = "KeystoneTattoo", + ["not"] = true, + ["overrideType"] = "AscendancyTattooScion", ["sd"] = { - [1] = "Your hits can't be Evaded", - [2] = "Never deal Critical Strikes", - [3] = "Limited to 1 Keystone Tattoo", + [1] = "25% increased Reservation Efficiency of Skills", + [2] = "Every 4 seconds, Regenerate 50% of Life over one second", + [3] = "If you've Attacked Recently, you and nearby Allies have +10% Chance to Block Attack Damage", + [4] = "If you've Cast a Spell Recently, you and nearby Allies have +10% Chance to Block Spell Damage", + [5] = "Limited to 1 Ascendancy Tattoo", }, ["stats"] = { - ["resolute_technique"] = { + ["base_reservation_efficiency_+%"] = { ["fmt"] = "d", ["index"] = 1, - ["max"] = 1, - ["min"] = 1, - ["statOrder"] = 10901, + ["max"] = 25, + ["min"] = 25, + ["statOrder"] = 2230, + }, + ["guardian_gain_life_regeneration_per_minute_%_for_1_second_every_10_seconds"] = { + ["fmt"] = "g", + ["index"] = 2, + ["max"] = 50, + ["min"] = 50, + ["statOrder"] = 3786, + }, + ["you_and_allies_additional_block_%_if_have_attacked_recently"] = { + ["fmt"] = "d", + ["index"] = 3, + ["max"] = 10, + ["min"] = 10, + ["statOrder"] = 10637, + }, + ["you_and_allies_additional_spell_block_%_if_cast_spell_recently"] = { + ["fmt"] = "d", + ["index"] = 4, + ["max"] = 10, + ["min"] = 10, + ["statOrder"] = 10638, }, }, - ["targetType"] = "Keystone", + ["targetType"] = "Ascendancy Notable", ["targetValue"] = "", }, - ["Runebinder"] = { + ["Harmony of Purpose"] = { ["MaximumConnected"] = 100, ["MinimumConnected"] = 0, ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", - ["dn"] = "Runebinder", + ["blockingPassive"] = { + [40465] = true, + }, + ["dn"] = "Harmony of Purpose", + ["icon"] = "Art/2DArt/SkillIcons/passives/Guardian/HarmonyOfPurpose.png", + ["id"] = "AscendancyGuardian11", + ["isTattoo"] = true, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["overrideType"] = "AscendancyTattooTemplar", + ["sd"] = { + [1] = "Gain a random Shrine buff every 10 seconds", + [2] = "Limited to 1 Ascendancy Tattoo", + }, + ["stats"] = { + ["gain_shrine_buff_every_x_ms_from_ascendancy"] = { + ["fmt"] = "g", + ["index"] = 1, + ["max"] = 10, + ["min"] = 10, + ["statOrder"] = 6820, + }, + }, + ["targetType"] = "Ascendancy Notable", + ["targetValue"] = "", + }, + ["Headsman"] = { + ["MaximumConnected"] = 100, + ["MinimumConnected"] = 0, + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", + ["dn"] = "Headsman", + ["icon"] = "Art/2DArt/SkillIcons/passives/Slayer/BaneOfLegends.png", + ["id"] = "AscendancySlayer7", + ["isTattoo"] = true, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["overrideType"] = "AscendancyTattooDuelist", + ["sd"] = { + [1] = "Kill Enemies that have 20% or lower Life when Hit by your Skills", + [2] = "Gain 10% increased Attack Speed for 20 seconds when you Kill a Rare or Unique Enemy", + [3] = "Gain 10% increased Movement Speed for 20 seconds when you Kill an Enemy", + [4] = "Limited to 1 Ascendancy Tattoo", + }, + ["stats"] = { + ["gain_attack_speed_+%_for_20_seconds_on_killing_rare_or_unique_enemy"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 10, + ["min"] = 10, + ["statOrder"] = 6737, + }, + ["gain_movement_speed_+%_for_20_seconds_on_kill"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 10, + ["min"] = 10, + ["statOrder"] = 6778, + }, + ["kill_enemy_on_hit_if_under_20%_life"] = { + ["fmt"] = "d", + ["index"] = 3, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 4213, + }, + }, + ["targetType"] = "Ascendancy Notable", + ["targetValue"] = "", + }, + ["Heart of Destruction"] = { + ["MaximumConnected"] = 100, + ["MinimumConnected"] = 0, + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", + ["dn"] = "Heart of Destruction", + ["icon"] = "Art/2DArt/SkillIcons/passives/Elementalist/PendulumOfDestruction.png", + ["id"] = "AscendancyElementalist11", + ["isTattoo"] = true, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["overrideType"] = "AscendancyTattooWitch", + ["sd"] = { + [1] = "Gain Convergence when you Hit a Unique Enemy, no more than once every 8 seconds", + [2] = "60% increased Area of Effect while you don't have Convergence", + [3] = "Limited to 1 Ascendancy Tattoo", + }, + ["stats"] = { + ["area_of_effect_+%_while_you_do_not_have_convergence"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 60, + ["min"] = 60, + ["statOrder"] = 4444, + }, + ["gain_convergence_on_hitting_unique_enemy"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 4443, + }, + }, + ["targetType"] = "Ascendancy Notable", + ["targetValue"] = "", + }, + ["Heartstopper"] = { + ["MaximumConnected"] = 100, + ["MinimumConnected"] = 0, + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", + ["dn"] = "Heartstopper", + ["icon"] = "Art/2DArt/SkillIcons/passives/Trickster/ImmuneToDoT.png", + ["id"] = "AscendancyTrickster6", + ["isTattoo"] = true, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["overrideType"] = "AscendancyTattooShadow", + ["sd"] = { + [1] = "Every 10 seconds:", + [2] = "Take 50% less Damage from Hits for 5 seconds", + [3] = "Take 50% less Damage over Time for 5 seconds", + [4] = "Limited to 1 Ascendancy Tattoo", + }, + ["stats"] = { + ["local_display_trickster_heartstopper_rotating_buff"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 50, + ["min"] = 50, + ["statOrder"] = 7922, + }, + }, + ["targetType"] = "Ascendancy Notable", + ["targetValue"] = "", + }, + ["Hex Master"] = { + ["MaximumConnected"] = 100, + ["MinimumConnected"] = 0, + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", + ["dn"] = "Hex Master", + ["icon"] = "Art/2DArt/SkillIcons/passives/KeystoneHexMaster.png", + ["id"] = "hex_zone_keystone2800_", + ["isTattoo"] = true, + ["ks"] = true, + ["m"] = false, + ["not"] = false, + ["overrideType"] = "KeystoneTattoo", + ["sd"] = { + [1] = "Your Hexes have infinite Duration", + [2] = "20% less Effect of your Curses", + [3] = "Limited to 1 Keystone Tattoo", + }, + ["stats"] = { + ["keystone_hex_master"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 10945, + }, + }, + ["targetType"] = "Keystone", + ["targetValue"] = "", + }, + ["Hierophant"] = { + ["MaximumConnected"] = 100, + ["MinimumConnected"] = 0, + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", + ["dn"] = "Hierophant", + ["icon"] = "Art/2DArt/SkillIcons/passives/Ascendants/Hierophant.png", + ["id"] = "AscendancyAscendant44", + ["isTattoo"] = true, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["overrideType"] = "AscendancyTattooScion", + ["sd"] = { + [1] = "25% increased maximum Mana", + [2] = "+1 to maximum number of Summoned Totems", + [3] = "8% of Damage is taken from Mana before Life", + [4] = "Arcane Surge also grants 10% more Spell Damage to you", + [5] = "Gain Arcane Surge when you or your Totems Hit an Enemy with a Spell", + [6] = "Limited to 1 Ascendancy Tattoo", + }, + ["stats"] = { + ["arcane_surge_on_you_spell_damage_+%_final_from_hierophant"] = { + ["fmt"] = "d", + ["index"] = 5, + ["max"] = 10, + ["min"] = 10, + ["statOrder"] = 4708, + }, + ["base_damage_removed_from_mana_before_life_%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 8, + ["min"] = 8, + ["statOrder"] = 2699, + }, + ["gain_arcane_surge_on_spell_hit_by_you_or_your_totems"] = { + ["fmt"] = "d", + ["index"] = 4, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 6732, + }, + ["maximum_mana_+%"] = { + ["fmt"] = "d", + ["index"] = 3, + ["max"] = 25, + ["min"] = 25, + ["statOrder"] = 1580, + }, + ["number_of_additional_totems_allowed"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 2254, + }, + }, + ["targetType"] = "Ascendancy Notable", + ["targetValue"] = "", + }, + ["Hinekora, Death's Fury"] = { + ["MaximumConnected"] = 100, + ["MinimumConnected"] = 0, + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", + ["dn"] = "Hinekora, Death's Fury", + ["icon"] = "Art/2DArt/SkillIcons/passives/Chieftain/HinekoraDeathsFury.png", + ["id"] = "AscendancyChieftan9", + ["isTattoo"] = true, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["overrideType"] = "AscendancyTattooMarauder", + ["sd"] = { + [1] = "Enemies you or your Totems Kill have 10% chance to Explode, dealing 250% of their maximum Life as Fire Damage", + [2] = "Limited to 1 Ascendancy Tattoo", + }, + ["stats"] = { + ["explode_enemies_for_500%_life_as_fire_on_kill_%_chance"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 10, + ["min"] = 10, + ["statOrder"] = 6516, + }, + }, + ["targetType"] = "Ascendancy Notable", + ["targetValue"] = "", + }, + ["Honoured Tattoo of the Barbarian"] = { + ["MaximumConnected"] = 100, + ["MinimumConnected"] = 0, + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/HinekoraPassiveBG.png", + ["dn"] = "Honoured Tattoo of the Barbarian", + ["icon"] = "Art/2DArt/SkillIcons/passives/HinekoraPassiveIcon2.png", + ["id"] = "SpecialNotableDex2", + ["isTattoo"] = true, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["overrideType"] = "UnknownTattoo", + ["sd"] = { + [1] = "+1% to maximum Cold Resistance", + [2] = "+1 to Maximum Frenzy Charges", + [3] = "Limited to 1 Attribute Notable Tattoo", + }, + ["stats"] = { + ["base_maximum_cold_damage_resistance_%"] = { + ["fmt"] = "d", + ["max"] = 1, + ["min"] = 1, + }, + ["max_frenzy_charges"] = { + ["fmt"] = "d", + ["max"] = 1, + ["min"] = 1, + }, + }, + ["targetType"] = "Notable", + ["targetValue"] = "+30 to Dexterity", + }, + ["Honoured Tattoo of the Berserker"] = { + ["MaximumConnected"] = 100, + ["MinimumConnected"] = 0, + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/HinekoraPassiveBG.png", + ["dn"] = "Honoured Tattoo of the Berserker", + ["icon"] = "Art/2DArt/SkillIcons/passives/HinekoraPassiveIcon2.png", + ["id"] = "SpecialNotableDex3", + ["isTattoo"] = true, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["overrideType"] = "UnknownTattoo", + ["sd"] = { + [1] = "You gain Onslaught for 4 seconds on Hit", + [2] = "Limited to 1 Attribute Notable Tattoo", + }, + ["stats"] = { + ["gain_onslaught_on_hit_duration_ms"] = { + ["fmt"] = "g", + ["max"] = 4, + ["min"] = 4, + }, + }, + ["targetType"] = "Notable", + ["targetValue"] = "+30 to Dexterity", + }, + ["Honoured Tattoo of the Dove"] = { + ["MaximumConnected"] = 100, + ["MinimumConnected"] = 0, + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/HinekoraPassiveBG.png", + ["dn"] = "Honoured Tattoo of the Dove", + ["icon"] = "Art/2DArt/SkillIcons/passives/ChaosResistNode.png", + ["id"] = "SpecialSmallNode1", + ["isTattoo"] = true, + ["ks"] = false, + ["m"] = false, + ["not"] = false, + ["overrideType"] = "UnknownTattoo", + ["sd"] = { + [1] = "+4% to Chaos Resistance", + }, + ["stats"] = { + ["base_chaos_damage_resistance_%"] = { + ["fmt"] = "d", + ["max"] = 4, + ["min"] = 4, + }, + }, + ["targetType"] = "Small Attribute", + ["targetValue"] = "", + }, + ["Honoured Tattoo of the Flock"] = { + ["MaximumConnected"] = 100, + ["MinimumConnected"] = 0, + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/HinekoraPassiveBG.png", + ["dn"] = "Honoured Tattoo of the Flock", + ["icon"] = "Art/2DArt/SkillIcons/passives/auraeffect.png", + ["id"] = "SpecialSmallNode8", + ["isTattoo"] = true, + ["ks"] = false, + ["m"] = false, + ["not"] = false, + ["overrideType"] = "UnknownTattoo", + ["sd"] = { + [1] = "1% increased effect of Non-Curse Auras from your Skills", + }, + ["stats"] = { + ["non_curse_aura_effect_+%"] = { + ["fmt"] = "d", + ["max"] = 1, + ["min"] = 1, + }, + }, + ["targetType"] = "Small Attribute", + ["targetValue"] = "", + }, + ["Honoured Tattoo of the Flood"] = { + ["MaximumConnected"] = 100, + ["MinimumConnected"] = 0, + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/HinekoraPassiveBG.png", + ["dn"] = "Honoured Tattoo of the Flood", + ["icon"] = "Art/2DArt/SkillIcons/passives/HinekoraPassiveIcon3.png", + ["id"] = "SpecialNotableInt3", + ["isTattoo"] = true, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["overrideType"] = "UnknownTattoo", + ["sd"] = { + [1] = "Gain Arcane Surge on Hit with Spells", + [2] = "Limited to 1 Attribute Notable Tattoo", + }, + ["stats"] = { + ["gain_arcane_surge_on_hit_%_chance"] = { + ["fmt"] = "d", + ["max"] = 100, + ["min"] = 100, + }, + }, + ["targetType"] = "Notable", + ["targetValue"] = "+30 to Intelligence", + }, + ["Honoured Tattoo of the Hatungo"] = { + ["MaximumConnected"] = 100, + ["MinimumConnected"] = 0, + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/HinekoraPassiveBG.png", + ["dn"] = "Honoured Tattoo of the Hatungo", + ["icon"] = "Art/2DArt/SkillIcons/passives/manareservationreduction.png", + ["id"] = "SpecialSmallNode7", + ["isTattoo"] = true, + ["ks"] = false, + ["m"] = false, + ["not"] = false, + ["overrideType"] = "UnknownTattoo", + ["sd"] = { + [1] = "1% increased Reservation Efficiency of Skills", + }, + ["stats"] = { + ["base_reservation_efficiency_+%"] = { + ["fmt"] = "d", + ["max"] = 1, + ["min"] = 1, + }, + }, + ["targetType"] = "Small Attribute", + ["targetValue"] = "", + }, + ["Honoured Tattoo of the Hunter"] = { + ["MaximumConnected"] = 100, + ["MinimumConnected"] = 0, + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/HinekoraPassiveBG.png", + ["dn"] = "Honoured Tattoo of the Hunter", + ["icon"] = "Art/2DArt/SkillIcons/passives/HinekoraPassiveIcon2.png", + ["id"] = "SpecialNotableDex1", + ["isTattoo"] = true, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["overrideType"] = "UnknownTattoo", + ["sd"] = { + [1] = "+1 to Level of all Dexterity Skill Gems", + [2] = "Limited to 1 Attribute Notable Tattoo", + }, + ["stats"] = { + ["dexterity_skill_gem_level_+"] = { + ["fmt"] = "d", + ["max"] = 1, + ["min"] = 1, + }, + }, + ["targetType"] = "Notable", + ["targetValue"] = "+30 to Dexterity", + }, + ["Honoured Tattoo of the Makanga"] = { + ["MaximumConnected"] = 100, + ["MinimumConnected"] = 8, + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/HinekoraPassiveBG.png", + ["dn"] = "Honoured Tattoo of the Makanga", + ["icon"] = "Art/2DArt/SkillIcons/passives/ElementalResistance2.png", + ["id"] = "UniqueSmallNode2", + ["isTattoo"] = true, + ["ks"] = false, + ["m"] = false, + ["not"] = false, + ["overrideType"] = "UnknownTattoo", + ["reminderText"] = { + [1] = "Requires at least 8 adjacent Passive Skills to be allocated", + }, + ["sd"] = { + [1] = "+2% to all maximum Resistances", + }, + ["stats"] = { + ["additional_maximum_all_resistances_%"] = { + ["fmt"] = "d", + ["max"] = 2, + ["min"] = 2, + }, + }, + ["targetType"] = "Small Attribute", + ["targetValue"] = "", + }, + ["Honoured Tattoo of the Mountain"] = { + ["MaximumConnected"] = 100, + ["MinimumConnected"] = 0, + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/HinekoraPassiveBG.png", + ["dn"] = "Honoured Tattoo of the Mountain", + ["icon"] = "Art/2DArt/SkillIcons/passives/HinekoraPassiveIcon1.png", + ["id"] = "SpecialNotableStr2", + ["isTattoo"] = true, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["overrideType"] = "UnknownTattoo", + ["sd"] = { + [1] = "+1% to maximum Fire Resistance", + [2] = "+1 to Maximum Endurance Charges", + [3] = "Limited to 1 Attribute Notable Tattoo", + }, + ["stats"] = { + ["base_maximum_fire_damage_resistance_%"] = { + ["fmt"] = "d", + ["max"] = 1, + ["min"] = 1, + }, + ["max_endurance_charges"] = { + ["fmt"] = "d", + ["max"] = 1, + ["min"] = 1, + }, + }, + ["targetType"] = "Notable", + ["targetValue"] = "+30 to Strength", + }, + ["Honoured Tattoo of the Oak"] = { + ["MaximumConnected"] = 100, + ["MinimumConnected"] = 0, + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/HinekoraPassiveBG.png", + ["dn"] = "Honoured Tattoo of the Oak", + ["icon"] = "Art/2DArt/SkillIcons/passives/life1.png", + ["id"] = "SpecialSmallNode6", + ["isTattoo"] = true, + ["ks"] = false, + ["m"] = false, + ["not"] = false, + ["overrideType"] = "UnknownTattoo", + ["sd"] = { + [1] = "2% increased maximum Life", + }, + ["stats"] = { + ["maximum_life_+%"] = { + ["fmt"] = "d", + ["max"] = 2, + ["min"] = 2, + }, + }, + ["targetType"] = "Small Attribute", + ["targetValue"] = "", + }, + ["Honoured Tattoo of the Pa"] = { + ["MaximumConnected"] = 100, + ["MinimumConnected"] = 0, + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/HinekoraPassiveBG.png", + ["dn"] = "Honoured Tattoo of the Pa", + ["icon"] = "Art/2DArt/SkillIcons/passives/HinekoraPassiveIcon1.png", + ["id"] = "SpecialNotableStr3", + ["isTattoo"] = true, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["overrideType"] = "UnknownTattoo", + ["sd"] = { + [1] = "Melee Hits Fortify", + [2] = "Limited to 1 Attribute Notable Tattoo", + }, + ["stats"] = { + ["fortify_on_hit"] = { + ["fmt"] = "d", + ["max"] = 1, + ["min"] = 1, + }, + }, + ["targetType"] = "Notable", + ["targetValue"] = "+30 to Strength", + }, + ["Honoured Tattoo of the Pillager"] = { + ["MaximumConnected"] = 100, + ["MinimumConnected"] = 0, + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/HinekoraPassiveBG.png", + ["dn"] = "Honoured Tattoo of the Pillager", + ["icon"] = "Art/2DArt/SkillIcons/passives/accuracyint.png", + ["id"] = "SpecialSmallNode4", + ["isTattoo"] = true, + ["ks"] = false, + ["m"] = false, + ["not"] = false, + ["overrideType"] = "UnknownTattoo", + ["sd"] = { + [1] = "3% increased Rarity of Items found", + }, + ["stats"] = { + ["base_item_found_rarity_+%"] = { + ["fmt"] = "d", + ["max"] = 3, + ["min"] = 3, + }, + }, + ["targetType"] = "Small Attribute", + ["targetValue"] = "", + }, + ["Honoured Tattoo of the Sky"] = { + ["MaximumConnected"] = 100, + ["MinimumConnected"] = 0, + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/HinekoraPassiveBG.png", + ["dn"] = "Honoured Tattoo of the Sky", + ["icon"] = "Art/2DArt/SkillIcons/passives/ElementalResistance2.png", + ["id"] = "SpecialSmallNode2", + ["isTattoo"] = true, + ["ks"] = false, + ["m"] = false, + ["not"] = false, + ["overrideType"] = "UnknownTattoo", + ["sd"] = { + [1] = "+3% to all Elemental Resistances", + }, + ["stats"] = { + ["base_resist_all_elements_%"] = { + ["fmt"] = "d", + ["max"] = 3, + ["min"] = 3, + }, + }, + ["targetType"] = "Small Attribute", + ["targetValue"] = "", + }, + ["Honoured Tattoo of the Storm"] = { + ["MaximumConnected"] = 100, + ["MinimumConnected"] = 0, + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/HinekoraPassiveBG.png", + ["dn"] = "Honoured Tattoo of the Storm", + ["icon"] = "Art/2DArt/SkillIcons/passives/HinekoraPassiveIcon3.png", + ["id"] = "SpecialNotableInt2", + ["isTattoo"] = true, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["overrideType"] = "UnknownTattoo", + ["sd"] = { + [1] = "+1% to maximum Lightning Resistance", + [2] = "+1 to Maximum Power Charges", + [3] = "Limited to 1 Attribute Notable Tattoo", + }, + ["stats"] = { + ["base_maximum_lightning_damage_resistance_%"] = { + ["fmt"] = "d", + ["max"] = 1, + ["min"] = 1, + }, + ["max_power_charges"] = { + ["fmt"] = "d", + ["max"] = 1, + ["min"] = 1, + }, + }, + ["targetType"] = "Notable", + ["targetValue"] = "+30 to Intelligence", + }, + ["Honoured Tattoo of the Tuatara"] = { + ["MaximumConnected"] = 100, + ["MinimumConnected"] = 0, + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/HinekoraPassiveBG.png", + ["dn"] = "Honoured Tattoo of the Tuatara", + ["icon"] = "Art/2DArt/SkillIcons/passives/accuracyint.png", + ["id"] = "SpecialSmallNode3", + ["isTattoo"] = true, + ["ks"] = false, + ["m"] = false, + ["not"] = false, + ["overrideType"] = "UnknownTattoo", + ["sd"] = { + [1] = "+4 to all Attributes", + }, + ["stats"] = { + ["additional_all_attributes"] = { + ["fmt"] = "d", + ["max"] = 4, + ["min"] = 4, + }, + }, + ["targetType"] = "Small Attribute", + ["targetValue"] = "", + }, + ["Honoured Tattoo of the Turtle"] = { + ["MaximumConnected"] = 100, + ["MinimumConnected"] = 0, + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/HinekoraPassiveBG.png", + ["dn"] = "Honoured Tattoo of the Turtle", + ["icon"] = "Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.png", + ["id"] = "SpecialSmallNode5", + ["isTattoo"] = true, + ["ks"] = false, + ["m"] = false, + ["not"] = false, + ["overrideType"] = "UnknownTattoo", + ["sd"] = { + [1] = "3% increased Global Defences", + }, + ["stats"] = { + ["global_defences_+%"] = { + ["fmt"] = "d", + ["max"] = 3, + ["min"] = 3, + }, + }, + ["targetType"] = "Small Attribute", + ["targetValue"] = "", + }, + ["Honoured Tattoo of the Warlord"] = { + ["MaximumConnected"] = 100, + ["MinimumConnected"] = 0, + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/HinekoraPassiveBG.png", + ["dn"] = "Honoured Tattoo of the Warlord", + ["icon"] = "Art/2DArt/SkillIcons/passives/HinekoraPassiveIcon1.png", + ["id"] = "SpecialNotableStr1", + ["isTattoo"] = true, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["overrideType"] = "UnknownTattoo", + ["sd"] = { + [1] = "+1 to Level of all Strength Skill Gems", + [2] = "Limited to 1 Attribute Notable Tattoo", + }, + ["stats"] = { + ["strength_skill_gem_level_+"] = { + ["fmt"] = "d", + ["max"] = 1, + ["min"] = 1, + }, + }, + ["targetType"] = "Notable", + ["targetValue"] = "+30 to Strength", + }, + ["Honoured Tattoo of the Wise"] = { + ["MaximumConnected"] = 100, + ["MinimumConnected"] = 0, + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/HinekoraPassiveBG.png", + ["dn"] = "Honoured Tattoo of the Wise", + ["icon"] = "Art/2DArt/SkillIcons/passives/HinekoraPassiveIcon3.png", + ["id"] = "SpecialNotableInt1", + ["isTattoo"] = true, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["overrideType"] = "UnknownTattoo", + ["sd"] = { + [1] = "+1 to Level of all Intelligence Skill Gems", + [2] = "Limited to 1 Attribute Notable Tattoo", + }, + ["stats"] = { + ["intelligence_skill_gem_level_+"] = { + ["fmt"] = "d", + ["max"] = 1, + ["min"] = 1, + }, + }, + ["targetType"] = "Notable", + ["targetValue"] = "+30 to Intelligence", + }, + ["Illuminated Devotion"] = { + ["MaximumConnected"] = 100, + ["MinimumConnected"] = 0, + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", + ["dn"] = "Illuminated Devotion", + ["icon"] = "Art/2DArt/SkillIcons/passives/Hierophant/ItemAugment.png", + ["id"] = "AscendancyHeirophant12", + ["isTattoo"] = true, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["overrideType"] = "AscendancyTattooTemplar", + ["sd"] = { + [1] = "Non-Damaging Ailments have 50% reduced Effect on you while you have Arcane Surge", + [2] = "30% increased Area of Effect while you have Arcane Surge", + [3] = "0.5% of Spell Damage Leeched as Life while you have Arcane Surge", + [4] = "Limited to 1 Ascendancy Tattoo", + }, + ["stats"] = { + ["area_of_effect_+%_while_you_have_arcane_surge"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 30, + ["min"] = 30, + ["statOrder"] = 4739, + }, + ["life_leech_from_spell_damage_permyriad_while_you_have_arcane_surge"] = { + ["fmt"] = "g", + ["index"] = 2, + ["max"] = 0.5, + ["min"] = 0.5, + ["statOrder"] = 7372, + }, + ["non_damaging_ailment_effect_+%_on_self_while_you_have_arcane_surge"] = { + ["fmt"] = "d", + ["index"] = 3, + ["max"] = 50, + ["min"] = 50, + ["statOrder"] = 4331, + }, + }, + ["targetType"] = "Ascendancy Notable", + ["targetValue"] = "", + }, + ["Imbalanced Guard"] = { + ["MaximumConnected"] = 100, + ["MinimumConnected"] = 0, + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", + ["dn"] = "Imbalanced Guard", + ["icon"] = "Art/2DArt/SkillIcons/passives/SacredBastionKeystone.png", + ["id"] = "sacred_bastion_keystone2779", + ["isTattoo"] = true, + ["ks"] = true, + ["m"] = false, + ["not"] = false, + ["overrideType"] = "KeystoneTattoo", + ["sd"] = { + [1] = "100% chance to Defend with 200% of Armour", + [2] = "Maximum Damage Reduction for any Damage Type is 50%", + [3] = "Limited to 1 Keystone Tattoo", + }, + ["stats"] = { + ["keystone_sacred_bastion"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 10961, + }, + }, + ["targetType"] = "Keystone", + ["targetValue"] = "", + }, + ["Impact"] = { + ["MaximumConnected"] = 100, + ["MinimumConnected"] = 0, + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", + ["dn"] = "Impact", + ["icon"] = "Art/2DArt/SkillIcons/passives/Slayer/Impact.png", + ["id"] = "AscendancySlayer12", + ["isTattoo"] = true, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["overrideType"] = "AscendancyTattooDuelist", + ["sd"] = { + [1] = "50% increased Global Accuracy Rating", + [2] = "+0.4 metres to Melee Strike Range", + [3] = "5% increased Area of Effect per Enemy killed recently, up to 50%", + [4] = "Deal up to 15% more Melee Damage to Enemies, based on proximity", + [5] = "Limited to 1 Ascendancy Tattoo", + }, + ["stats"] = { + ["accuracy_rating_+%"] = { + ["fmt"] = "d", + ["index"] = 3, + ["max"] = 50, + ["min"] = 50, + ["statOrder"] = 1434, + }, + ["melee_range_+"] = { + ["fmt"] = "g", + ["index"] = 2, + ["max"] = 0.4, + ["min"] = 0.4, + ["statOrder"] = 2534, + }, + ["slayer_area_of_effect_+%_per_enemy_killed_recently_up_to_50%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 5, + ["min"] = 5, + ["statOrder"] = 10075, + }, + ["slayer_damage_+%_final_from_distance"] = { + ["fmt"] = "d", + ["index"] = 4, + ["max"] = 15, + ["min"] = 15, + ["statOrder"] = 10078, + }, + }, + ["targetType"] = "Ascendancy Notable", + ["targetValue"] = "", + }, + ["Inevitable Judgement"] = { + ["MaximumConnected"] = 100, + ["MinimumConnected"] = 0, + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", + ["dn"] = "Inevitable Judgement", + ["icon"] = "Art/2DArt/SkillIcons/passives/Inquistitor/ElementalForce.png", + ["id"] = "AscendancyInquisitor8", + ["isTattoo"] = true, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["overrideType"] = "AscendancyTattooTemplar", + ["sd"] = { + [1] = "Critical Strikes ignore Enemy Monster Elemental Resistances", + [2] = "Non-Critical Strikes Penetrate 10% of Enemy Elemental Resistances", + [3] = "Limited to 1 Ascendancy Tattoo", + }, + ["stats"] = { + ["critical_strikes_ignore_elemental_resistances"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 3452, + }, + ["non_critical_strikes_penetrate_elemental_resistances_%"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 10, + ["min"] = 10, + ["statOrder"] = 3557, + }, + }, + ["targetType"] = "Ascendancy Notable", + ["targetValue"] = "", + }, + ["Infused Toxins"] = { + ["MaximumConnected"] = 100, + ["MinimumConnected"] = 0, + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", + ["dn"] = "Infused Toxins", + ["icon"] = "Art/2DArt/SkillIcons/passives/ChaosDamageOverTimeNotable.png", + ["id"] = "AscendancyAssassin19", + ["isTattoo"] = true, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["overrideType"] = "AscendancyTattooShadow", + ["sd"] = { + [1] = "All Damage from Hits can Poison", + [2] = "Limited to 1 Ascendancy Tattoo", + }, + ["stats"] = { + ["all_damage_can_poison"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 4626, + }, + }, + ["targetType"] = "Ascendancy Notable", + ["targetValue"] = "", + }, + ["Inquisitor"] = { + ["MaximumConnected"] = 100, + ["MinimumConnected"] = 0, + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", + ["dn"] = "Inquisitor", + ["icon"] = "Art/2DArt/SkillIcons/passives/Ascendants/Inquisitor.png", + ["id"] = "AscendancyAscendant43", + ["isTattoo"] = true, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["overrideType"] = "AscendancyTattooScion", + ["sd"] = { + [1] = "Damage Penetrates 8% of Enemy Elemental Resistances", + [2] = "10% chance to create Consecrated Ground when you Hit a Rare or Unique Enemy, lasting 8 seconds", + [3] = "Effects of Consecrated Ground you create Linger for 4 seconds", + [4] = "Limited to 1 Ascendancy Tattoo", + }, + ["stats"] = { + ["base_penetrate_elemental_resistances_%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 8, + ["min"] = 8, + ["statOrder"] = 3559, + }, + ["create_consecrated_ground_on_hit_%_vs_rare_or_unique_enemy"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 10, + ["min"] = 10, + ["statOrder"] = 5903, + }, + ["your_consecrated_ground_effect_lingers_for_ms_after_leaving_the_area"] = { + ["fmt"] = "g", + ["index"] = 3, + ["max"] = 4, + ["min"] = 4, + ["statOrder"] = 10690, + }, + }, + ["targetType"] = "Ascendancy Notable", + ["targetValue"] = "", + }, + ["Inspirational"] = { + ["MaximumConnected"] = 100, + ["MinimumConnected"] = 0, + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", + ["dn"] = "Inspirational", + ["icon"] = "Art/2DArt/SkillIcons/passives/Champion/Inpirational.png", + ["id"] = "AscendancyChampion11", + ["isTattoo"] = true, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["overrideType"] = "AscendancyTattooDuelist", + ["sd"] = { + [1] = "30% increased effect of Non-Curse Auras from your Skills", + [2] = "You and Allies near your Banner Regenerate 0.1% of Life per second for each Valour consumed for that Banner", + [3] = "When you leave your Banner's Area, recover 30% of the Valour consumed for that Banner", + [4] = "Limited to 1 Ascendancy Tattoo", + }, + ["stats"] = { + ["non_curse_aura_effect_+%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 30, + ["min"] = 30, + ["statOrder"] = 3566, + }, + ["on_leaving_banner_area_recover_%_of_planted_banner_resources"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 30, + ["min"] = 30, + ["statOrder"] = 9557, + }, + ["you_and_allies_affected_by_your_placed_banners_regenerate_%_life_per_minute_per_resource"] = { + ["fmt"] = "g", + ["index"] = 3, + ["max"] = 0.1, + ["min"] = 0.1, + ["statOrder"] = 4071, + }, + }, + ["targetType"] = "Ascendancy Notable", + ["targetValue"] = "", + }, + ["Instruments of Virtue"] = { + ["MaximumConnected"] = 100, + ["MinimumConnected"] = 0, + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", + ["dn"] = "Instruments of Virtue", + ["icon"] = "Art/2DArt/SkillIcons/passives/Inquistitor/InstrumentsOfVirtue.png", + ["id"] = "AscendancyInquisitor15", + ["isTattoo"] = true, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["overrideType"] = "AscendancyTattooTemplar", + ["sd"] = { + [1] = "10% more Attack Damage for each Non-Instant Spell you've Cast in the past 8 seconds, up to a maximum of 30%", + [2] = "Battlemage", + [3] = "Limited to 1 Ascendancy Tattoo", + }, + ["stats"] = { + ["inquisitor_attack_damage_+%_final_per_non_instant_spell_cast_in_8_seconds_max_30%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 10, + ["min"] = 10, + ["statOrder"] = 7290, + }, + ["keystone_battlemage"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 10772, + }, + }, + ["targetType"] = "Ascendancy Notable", + ["targetValue"] = "", + }, + ["Instruments of Zeal"] = { + ["MaximumConnected"] = 100, + ["MinimumConnected"] = 0, + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", + ["dn"] = "Instruments of Zeal", + ["icon"] = "Art/2DArt/SkillIcons/passives/Inquistitor/InstrumentsofZeal.png", + ["id"] = "AscendancyInquisitor14", + ["isTattoo"] = true, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["overrideType"] = "AscendancyTattooTemplar", + ["sd"] = { + [1] = "Gain Fanaticism for 4 seconds on reaching Maximum Fanatic Charges", + [2] = "Gain 1 Fanatic Charge every second if you've Attacked in the past second", + [3] = "Lose all Fanatic Charges on reaching Maximum Fanatic Charges", + [4] = "+4 to Maximum Fanatic Charges", + [5] = "Limited to 1 Ascendancy Tattoo", + }, + ["stats"] = { + ["gain_fanaticism_for_4_seconds_on_reaching_maximum_fanatic_charges"] = { + ["fmt"] = "d", + ["index"] = 3, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 6751, + }, + ["gain_x_fanatic_charges_every_second_if_have_attacked_in_past_second"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 6834, + }, + ["lose_all_fanatic_charges_on_reaching_maximum_fanatic_charges"] = { + ["fmt"] = "d", + ["index"] = 4, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 8137, + }, + ["maximum_fanaticism_charges"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 4, + ["min"] = 4, + ["statOrder"] = 9139, + }, + }, + ["targetType"] = "Ascendancy Notable", + ["targetValue"] = "", + }, + ["Iron Grip"] = { + ["MaximumConnected"] = 100, + ["MinimumConnected"] = 0, + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", + ["dn"] = "Iron Grip", + ["icon"] = "Art/2DArt/SkillIcons/passives/KeystoneIronGrip.png", + ["id"] = "iron_grip1181", + ["isTattoo"] = true, + ["ks"] = true, + ["m"] = false, + ["not"] = false, + ["overrideType"] = "KeystoneTattoo", + ["sd"] = { + [1] = "Strength's Damage bonus applies to Projectile Attack Damage as well as Melee Damage", + [2] = "Limited to 1 Keystone Tattoo", + }, + ["stats"] = { + ["keystone_strong_bowman"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 10886, + }, + }, + ["targetType"] = "Keystone", + ["targetValue"] = "", + }, + ["Iron Reflexes"] = { + ["MaximumConnected"] = 100, + ["MinimumConnected"] = 0, + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", + ["dn"] = "Iron Reflexes", + ["icon"] = "Art/2DArt/SkillIcons/passives/KeystoneIronReflexes.png", + ["id"] = "iron_reflexes1137", + ["isTattoo"] = true, + ["ks"] = true, + ["m"] = false, + ["not"] = false, + ["overrideType"] = "KeystoneTattoo", + ["sd"] = { + [1] = "Converts all Evasion Rating to Armour. Dexterity provides no bonus to Evasion Rating", + [2] = "Limited to 1 Keystone Tattoo", + }, + ["stats"] = { + ["keystone_iron_reflexes"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 10875, + }, + }, + ["targetType"] = "Keystone", + ["targetValue"] = "", + }, + ["Iron Will"] = { + ["MaximumConnected"] = 100, + ["MinimumConnected"] = 0, + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", + ["dn"] = "Iron Will", + ["icon"] = "Art/2DArt/SkillIcons/passives/KeystoneIronWill.png", + ["id"] = "iron_will_keystone2850", + ["isTattoo"] = true, + ["ks"] = true, + ["m"] = false, + ["not"] = false, + ["overrideType"] = "KeystoneTattoo", + ["sd"] = { + [1] = "Strength's Damage bonus applies to all Spell Damage as well", + [2] = "Limited to 1 Keystone Tattoo", + }, + ["stats"] = { + ["strong_casting"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 10979, + }, + }, + ["targetType"] = "Keystone", + ["targetValue"] = "", + }, + ["Jagged Technique"] = { + ["MaximumConnected"] = 100, + ["MinimumConnected"] = 0, + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", + ["dn"] = "Jagged Technique", + ["icon"] = "Art/2DArt/SkillIcons/passives/Gladiator/GLADBloodInEyes.png", + ["id"] = "AscendancyGladiator8", + ["isTattoo"] = true, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["overrideType"] = "AscendancyTattooDuelist", + ["sd"] = { + [1] = "Bleeding you inflict is Aggravated", + [2] = "Limited to 1 Ascendancy Tattoo", + }, + ["stats"] = { + ["aggravate_inflicted_bleeding"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 4612, + }, + }, + ["targetType"] = "Ascendancy Notable", + ["targetValue"] = "", + }, + ["Journey Tattoo of the Body"] = { + ["MaximumConnected"] = 100, + ["MinimumConnected"] = 0, + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/HinekoraPassiveBG.png", + ["dn"] = "Journey Tattoo of the Body", + ["icon"] = "Art/2DArt/SkillIcons/passives/HinekoraPassiveIcon1.png", + ["id"] = "UniqueNotableStr1", + ["isTattoo"] = true, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["overrideType"] = "HonouredHeartTattoo", + ["sd"] = { + [1] = "+25 to maximum Life per Allocated Journey Tattoo of the Body", + }, + ["stats"] = { + ["maximum_life_per_honoured_heart_tattoo_allocated"] = { + ["fmt"] = "d", + ["max"] = 25, + ["min"] = 25, + }, + }, + ["targetType"] = "Notable", + ["targetValue"] = "+30 to Strength", + }, + ["Journey Tattoo of the Mind"] = { + ["MaximumConnected"] = 100, + ["MinimumConnected"] = 0, + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/HinekoraPassiveBG.png", + ["dn"] = "Journey Tattoo of the Mind", + ["icon"] = "Art/2DArt/SkillIcons/passives/HinekoraPassiveIcon2.png", + ["id"] = "UniqueNotableDex1", + ["isTattoo"] = true, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["overrideType"] = "HonouredMindTattoo", + ["sd"] = { + [1] = "+30 to maximum Mana per Allocated Journey Tattoo of the Mind", + }, + ["stats"] = { + ["maximum_mana_per_honoured_mind_tattoo_allocated"] = { + ["fmt"] = "d", + ["max"] = 30, + ["min"] = 30, + }, + }, + ["targetType"] = "Notable", + ["targetValue"] = "+30 to Dexterity", + }, + ["Journey Tattoo of the Soul"] = { + ["MaximumConnected"] = 100, + ["MinimumConnected"] = 0, + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/HinekoraPassiveBG.png", + ["dn"] = "Journey Tattoo of the Soul", + ["icon"] = "Art/2DArt/SkillIcons/passives/HinekoraPassiveIcon3.png", + ["id"] = "UniqueNotableInt1", + ["isTattoo"] = true, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["overrideType"] = "HonouredSoulTattoo", + ["sd"] = { + [1] = "+40 to maximum Energy Shield per Allocated Journey Tattoo of the Soul", + }, + ["stats"] = { + ["maximum_es_per_honoured_soul_tattoo_allocated"] = { + ["fmt"] = "d", + ["max"] = 40, + ["min"] = 40, + }, + }, + ["targetType"] = "Notable", + ["targetValue"] = "+30 to Intelligence", + }, + ["Juggernaut"] = { + ["MaximumConnected"] = 100, + ["MinimumConnected"] = 0, + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", + ["dn"] = "Juggernaut", + ["icon"] = "Art/2DArt/SkillIcons/passives/Ascendants/Juggernaut.png", + ["id"] = "AscendancyAscendant31", + ["isTattoo"] = true, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["overrideType"] = "AscendancyTattooScion", + ["sd"] = { + [1] = "+1000 to Accuracy Rating", + [2] = "Cannot be Chilled", + [3] = "Cannot be Stunned", + [4] = "5% increased Damage per Endurance Charge", + [5] = "Gain 1 Endurance Charge every second if you've been Hit Recently", + [6] = "Limited to 1 Ascendancy Tattoo", + }, + ["stats"] = { + ["accuracy_rating"] = { + ["fmt"] = "d", + ["index"] = 4, + ["max"] = 1000, + ["min"] = 1000, + ["statOrder"] = 1433, + }, + ["base_cannot_be_chilled"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 1837, + }, + ["base_cannot_be_stunned"] = { + ["fmt"] = "d", + ["index"] = 5, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 2173, + }, + ["damage_+%_per_endurance_charge"] = { + ["fmt"] = "d", + ["index"] = 3, + ["max"] = 5, + ["min"] = 5, + ["statOrder"] = 3199, + }, + ["gain_endurance_charge_per_second_if_have_been_hit_recently"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 6747, + }, + }, + ["targetType"] = "Ascendancy Notable", + ["targetValue"] = "", + }, + ["Knife in the Back"] = { + ["MaximumConnected"] = 100, + ["MinimumConnected"] = 0, + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", + ["dn"] = "Knife in the Back", + ["icon"] = "Art/2DArt/SkillIcons/passives/Assassin/Ambush.png", + ["id"] = "AscendancyAssassin6", + ["isTattoo"] = true, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["overrideType"] = "AscendancyTattooShadow", + ["sd"] = { + [1] = "100% more Critical Strike Chance against Enemies that are not on Low Life", + [2] = "+100% to Critical Strike Multiplier against Enemies that are on Low Life", + [3] = "Critical Strikes have Culling Strike", + [4] = "Limited to 1 Ascendancy Tattoo", + }, + ["stats"] = { + ["assassin_critical_strike_chance_+%_final_vs_enemies_not_on_low_life"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 100, + ["min"] = 100, + ["statOrder"] = 3436, + }, + ["assassin_critical_strike_multiplier_+_vs_enemies_on_low_life"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 100, + ["min"] = 100, + ["statOrder"] = 3438, + }, + ["crits_have_culling_strike"] = { + ["fmt"] = "d", + ["index"] = 3, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 3440, + }, + }, + ["targetType"] = "Ascendancy Notable", + ["targetValue"] = "", + }, + ["Lesson of the Seasons"] = { + ["MaximumConnected"] = 100, + ["MinimumConnected"] = 0, + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", + ["dn"] = "Lesson of the Seasons", + ["icon"] = "Art/2DArt/SkillIcons/passives/Warden/WardenBarkskin2.png", + ["id"] = "AscendancyRaider8", + ["isTattoo"] = true, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["overrideType"] = "AscendancyTattooRanger", + ["sd"] = { + [1] = "-25 Damage taken of each Damage Type from Spell Hits per Bark", + [2] = "Prevent +3% of Suppressed Spell Damage per Bark below maximum", + [3] = "Lose 1 Bark when Hit by Enemy Spell Damage", + [4] = "Limited to 1 Ascendancy Tattoo", + }, + ["stats"] = { + ["lose_X_bark_on_enemy_spell_hit"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 10718, + }, + ["spell_damage_%_suppressed_per_bark_below_max"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 3, + ["min"] = 3, + ["statOrder"] = 10143, + }, + ["spell_damage_taken_+_per_barkskin_stack"] = { + ["fmt"] = "d", + ["index"] = 3, + ["max"] = -25, + ["min"] = -25, + ["statOrder"] = 537, + }, + }, + ["targetType"] = "Ascendancy Notable", + ["targetValue"] = "", + }, + ["Lethe Shade"] = { + ["MaximumConnected"] = 100, + ["MinimumConnected"] = 0, + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", + ["dn"] = "Lethe Shade", + ["icon"] = "Art/2DArt/SkillIcons/passives/MomentofRespite.png", + ["id"] = "respite_keystone2855", + ["isTattoo"] = true, + ["ks"] = true, + ["m"] = false, + ["not"] = false, + ["overrideType"] = "KeystoneTattoo", + ["sd"] = { + [1] = "Take 50% less Damage over Time if you've started taking Damage over Time in the past second", + [2] = "100% more Duration of Ailments on you", + [3] = "Limited to 1 Keystone Tattoo", + }, + ["stats"] = { + ["keystone_lethe_shade"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 10947, + }, + }, + ["targetType"] = "Keystone", + ["targetValue"] = "", + }, + ["Liege of the Primordial"] = { + ["MaximumConnected"] = 100, + ["MinimumConnected"] = 0, + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", + ["dn"] = "Liege of the Primordial", + ["icon"] = "Art/2DArt/SkillIcons/passives/Elementalist/LiegeOfThePrimordial.png", + ["id"] = "AscendancyElementalist9", + ["isTattoo"] = true, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["overrideType"] = "AscendancyTattooWitch", + ["sd"] = { + [1] = "Summoned Golems are Immune to Elemental Damage", + [2] = "Summoned Golems are Resummoned 4 seconds after being Killed", + [3] = "+2 to maximum number of Summoned Golems", + [4] = "Limited to 1 Ascendancy Tattoo", + }, + ["stats"] = { + ["base_number_of_golems_allowed"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 2, + ["min"] = 2, + ["statOrder"] = 10909, + }, + ["golem_immunity_to_elemental_damage"] = { + ["fmt"] = "d", + ["index"] = 3, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 4093, + }, + ["revive_golems_if_killed_by_enemies_ms"] = { + ["fmt"] = "g", + ["index"] = 1, + ["max"] = 4, + ["min"] = 4, + ["statOrder"] = 9944, + }, + }, + ["targetType"] = "Ascendancy Notable", + ["targetValue"] = "", + }, + ["Like Clockwork"] = { + ["MaximumConnected"] = 100, + ["MinimumConnected"] = 0, + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", + ["dn"] = "Like Clockwork", + ["icon"] = "Art/2DArt/SkillIcons/passives/Saboteur/LikeClockworkNotable.png", + ["id"] = "AscendancySaboteur8", + ["isTattoo"] = true, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["overrideType"] = "AscendancyTattooShadow", + ["sd"] = { + [1] = "50% increased Cooldown Recovery Rate", + [2] = "Limited to 1 Ascendancy Tattoo", + }, + ["stats"] = { + ["base_cooldown_speed_+%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 50, + ["min"] = 50, + ["statOrder"] = 5005, + }, + }, + ["targetType"] = "Ascendancy Notable", + ["targetValue"] = "", + }, + ["Loyalty Tattoo of Ahuana"] = { + ["MaximumConnected"] = 100, + ["MinimumConnected"] = 0, + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/RamakoTribePassiveBG.png", + ["dn"] = "Loyalty Tattoo of Ahuana", + ["icon"] = "Art/2DArt/SkillIcons/RamakoTribeSkill.png", + ["id"] = "Ramako6", + ["isTattoo"] = true, + ["ks"] = false, + ["m"] = false, + ["not"] = false, + ["overrideType"] = "UnknownTattoo", + ["sd"] = { + [1] = "Trigger level 1 Summon Spirit of Ahuana Skill when you Suppress", + [2] = "Spell Damage from a Unique Enemy", + [3] = "Limited to 1 Loyalty Tattoo", + }, + ["stats"] = { + ["has_trigger_on_suppress_hit_from_unique"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["local_display_tattoo_trigger_level_x_ahuana"] = { + ["fmt"] = "d", + ["max"] = 1, + ["min"] = 1, + }, + }, + ["targetType"] = "Small Dexterity", + ["targetValue"] = "", + }, + ["Loyalty Tattoo of Akoya"] = { + ["MaximumConnected"] = 100, + ["MinimumConnected"] = 0, + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/TukohamaTribePassiveBG.png", + ["dn"] = "Loyalty Tattoo of Akoya", + ["icon"] = "Art/2DArt/SkillIcons/TukohamaTribeSkill.png", + ["id"] = "Tukohama6", + ["isTattoo"] = true, + ["ks"] = false, + ["m"] = false, + ["not"] = false, + ["overrideType"] = "UnknownTattoo", + ["sd"] = { + [1] = "Trigger level 1 Summon Spirit of Akoya Skill when you reach Maximum Rage while", + [2] = "a Unique Enemy is in your Presence", + [3] = "Limited to 1 Loyalty Tattoo", + }, + ["stats"] = { + ["has_trigger_on_reaching_maximum_rage_in_presence_of_unique"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["local_display_tattoo_trigger_level_x_akoya"] = { + ["fmt"] = "d", + ["max"] = 1, + ["min"] = 1, + }, + }, + ["targetType"] = "Small Strength", + ["targetValue"] = "", + }, + ["Loyalty Tattoo of Ikiaho"] = { + ["MaximumConnected"] = 100, + ["MinimumConnected"] = 0, + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/ArohonguiTribePassiveBG.png", + ["dn"] = "Loyalty Tattoo of Ikiaho", + ["icon"] = "Art/2DArt/SkillIcons/ArohonguiTribeSkill.png", + ["id"] = "Arohongui6", + ["isTattoo"] = true, + ["ks"] = false, + ["m"] = false, + ["not"] = false, + ["overrideType"] = "UnknownTattoo", + ["sd"] = { + [1] = "Trigger level 1 Summon Spirit of Ikiaho Skill when you use a Travel", + [2] = "Skill while a Unique Enemy is in your Presence", + [3] = "Limited to 1 Loyalty Tattoo", + }, + ["stats"] = { + ["has_trigger_on_travel_skill_use_in_presence_of_unique"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["local_display_tattoo_trigger_level_x_ikiaho"] = { + ["fmt"] = "d", + ["max"] = 1, + ["min"] = 1, + }, + }, + ["targetType"] = "Small Dexterity", + ["targetValue"] = "", + }, + ["Loyalty Tattoo of Kahuturoa"] = { + ["MaximumConnected"] = 100, + ["MinimumConnected"] = 0, + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/RongokuraiTribePassiveBG.png", + ["dn"] = "Loyalty Tattoo of Kahuturoa", + ["icon"] = "Art/2DArt/SkillIcons/RongokuraiTribeSkill.png", + ["id"] = "Rongokurai6", + ["isTattoo"] = true, + ["ks"] = false, + ["m"] = false, + ["not"] = false, + ["overrideType"] = "UnknownTattoo", + ["sd"] = { + [1] = "Trigger level 1 Summon Spirit of Kahuturoa Skill when you take", + [2] = "a Critical Strike from a Unique Enemy", + [3] = "Limited to 1 Loyalty Tattoo", + }, + ["stats"] = { + ["has_trigger_on_crit_by_unique_enemy"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["local_display_tattoo_trigger_level_x_kahuturoa"] = { + ["fmt"] = "d", + ["max"] = 1, + ["min"] = 1, + }, + }, + ["targetType"] = "Small Strength", + ["targetValue"] = "", + }, + ["Loyalty Tattoo of Kaom"] = { + ["MaximumConnected"] = 100, + ["MinimumConnected"] = 0, + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/NgamahuTribePassiveBG.png", + ["dn"] = "Loyalty Tattoo of Kaom", + ["icon"] = "Art/2DArt/SkillIcons/NgamahuTribeSkill.png", + ["id"] = "Ngamahu6", + ["isTattoo"] = true, + ["ks"] = false, + ["m"] = false, + ["not"] = false, + ["overrideType"] = "UnknownTattoo", + ["sd"] = { + [1] = "Trigger level 1 Summon Spirit of Kaom Skill when a Totem dies while", + [2] = "a Unique Enemy is in your Presence", + [3] = "Limited to 1 Loyalty Tattoo", + }, + ["stats"] = { + ["has_trigger_on_totem_death_in_presence_of_unique"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["local_display_tattoo_trigger_level_x_kaom"] = { + ["fmt"] = "d", + ["max"] = 1, + ["min"] = 1, + }, + }, + ["targetType"] = "Small Strength", + ["targetValue"] = "", + }, + ["Loyalty Tattoo of Kiloava"] = { + ["MaximumConnected"] = 100, + ["MinimumConnected"] = 0, + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/ValakoTribePassiveBG.png", + ["dn"] = "Loyalty Tattoo of Kiloava", + ["icon"] = "Art/2DArt/SkillIcons/ValakoTribeSkill.png", + ["id"] = "Valako6", + ["isTattoo"] = true, + ["ks"] = false, + ["m"] = false, + ["not"] = false, + ["overrideType"] = "UnknownTattoo", + ["sd"] = { + [1] = "Trigger level 1 Summon Spirit of Kiloava Skill when you Block Damage from a Unique Enemy", + [2] = "Limited to 1 Loyalty Tattoo", + }, + ["stats"] = { + ["has_trigger_on_block_hit_from_unique"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["local_display_tattoo_trigger_level_x_kiloava"] = { + ["fmt"] = "d", + ["max"] = 1, + ["min"] = 1, + }, + }, + ["targetType"] = "Small Intelligence", + ["targetValue"] = "", + }, + ["Loyalty Tattoo of Maata"] = { + ["MaximumConnected"] = 100, + ["MinimumConnected"] = 0, + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/TawhoaTribePassiveBG.png", + ["dn"] = "Loyalty Tattoo of Maata", + ["icon"] = "Art/2DArt/SkillIcons/TawhoaTribeSkill.png", + ["id"] = "Tawhoa6", + ["isTattoo"] = true, + ["ks"] = false, + ["m"] = false, + ["not"] = false, + ["overrideType"] = "UnknownTattoo", + ["sd"] = { + [1] = "Trigger level 1 Summon Spirit of Maata Skill when you reach Low Life while", + [2] = "a Unique Enemy is in your Presence", + [3] = "Limited to 1 Loyalty Tattoo", + }, + ["stats"] = { + ["has_trigger_on_reaching_low_life_in_presence_of_unique"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["local_display_tattoo_trigger_level_x_maata"] = { + ["fmt"] = "d", + ["max"] = 1, + ["min"] = 1, + }, + }, + ["targetType"] = "Small Intelligence", + ["targetValue"] = "", + }, + ["Loyalty Tattoo of Rakiata"] = { + ["MaximumConnected"] = 100, + ["MinimumConnected"] = 0, + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/TasalioTribePassiveBG.png", + ["dn"] = "Loyalty Tattoo of Rakiata", + ["icon"] = "Art/2DArt/SkillIcons/TasalioTribeSkill.png", + ["id"] = "Tasalio6", + ["isTattoo"] = true, + ["ks"] = false, + ["m"] = false, + ["not"] = false, + ["overrideType"] = "UnknownTattoo", + ["sd"] = { + [1] = "Trigger level 1 Summon Spirit of Rakiata Skill on Critical Strike against Marked Unique Enemy", + [2] = "Limited to 1 Loyalty Tattoo", + }, + ["stats"] = { + ["has_trigger_on_crit_vs_marked_unique"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["local_display_tattoo_trigger_level_x_rakiata"] = { + ["fmt"] = "d", + ["max"] = 1, + ["min"] = 1, + }, + }, + ["targetType"] = "Small Dexterity", + ["targetValue"] = "", + }, + ["Loyalty Tattoo of Tawhanuku"] = { + ["MaximumConnected"] = 100, + ["MinimumConnected"] = 0, + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/HinekoraTribePassiveBG.png", + ["dn"] = "Loyalty Tattoo of Tawhanuku", + ["icon"] = "Art/2DArt/SkillIcons/HinekoraTribeSkill.png", + ["id"] = "Hinekora6", + ["isTattoo"] = true, + ["ks"] = false, + ["m"] = false, + ["not"] = false, + ["overrideType"] = "UnknownTattoo", + ["sd"] = { + [1] = "Trigger level 1 Summon Spirit of Tawhanuku Skill when Energy Shield Recharge starts while a Unique Enemy is in your Presence", + [2] = "Limited to 1 Loyalty Tattoo", + }, + ["stats"] = { + ["has_trigger_on_es_recharge_in_presence_of_unique"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["local_display_tattoo_trigger_level_x_tawhanuku"] = { + ["fmt"] = "d", + ["max"] = 1, + ["min"] = 1, + }, + }, + ["targetType"] = "Small Intelligence", + ["targetValue"] = "", + }, + ["Loyalty Tattoo of Utula"] = { + ["MaximumConnected"] = 100, + ["MinimumConnected"] = 0, + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KitavaTribePassiveBG.png", + ["dn"] = "Loyalty Tattoo of Utula", + ["icon"] = "Art/2DArt/SkillIcons/KitavaTribeSkill.png", + ["id"] = "Kitava6", + ["isTattoo"] = true, + ["ks"] = false, + ["m"] = false, + ["not"] = false, + ["overrideType"] = "UnknownTattoo", + ["sd"] = { + [1] = "Trigger level 1 Summon Spirit of Utula Skill on taking a Savage Hit from a Unique Enemy", + [2] = "Limited to 1 Loyalty Tattoo", + }, + ["stats"] = { + ["has_trigger_on_taking_savage_hit_from_unique"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["local_display_tattoo_trigger_level_x_utula"] = { + ["fmt"] = "d", + ["max"] = 1, + ["min"] = 1, + }, + }, + ["targetType"] = "Small Strength", + ["targetValue"] = "", + }, + ["Magebane"] = { + ["MaximumConnected"] = 100, + ["MinimumConnected"] = 0, + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", + ["dn"] = "Magebane", + ["icon"] = "Art/2DArt/SkillIcons/passives/Deaden.png", + ["id"] = "deaden_keystone2849", + ["isTattoo"] = true, + ["ks"] = true, + ["m"] = false, + ["not"] = false, + ["overrideType"] = "KeystoneTattoo", + ["sd"] = { + [1] = "Dexterity provides no inherent bonus to Evasion Rating", + [2] = "+1% Chance to Suppress Spell Damage per 15 Dexterity", + [3] = "Limited to 1 Keystone Tattoo", + }, + ["stats"] = { + ["keystone_magebane"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 10948, + }, + }, + ["targetType"] = "Keystone", + ["targetValue"] = "", + }, + ["Marshal of Divinity"] = { + ["MaximumConnected"] = 100, + ["MinimumConnected"] = 0, + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", + ["dn"] = "Marshal of Divinity", + ["icon"] = "Art/2DArt/SkillIcons/passives/Guardian/GuardianHallowingFlameNotable.png", + ["id"] = "AscendancyGuardian18", + ["isTattoo"] = true, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["overrideType"] = "AscendancyTattooTemplar", + ["sd"] = { + [1] = "Inflict Hallowing Flame on Melee Hit", + [2] = "You can inflict +1 Hallowing Flame on Enemies", + [3] = "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%", + [4] = "Limited to 1 Ascendancy Tattoo", + }, + ["stats"] = { + ["inflict_hallowing_flame_on_melee_hit_chance_%"] = { + ["fmt"] = "d", + ["index"] = 3, + ["max"] = 100, + ["min"] = 100, + ["statOrder"] = 7279, + }, + ["number_of_additional_hallowing_flame_allowed"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 9521, + }, + ["physical_damage_%_to_add_as_lightning_damage_per_hallowing_flame_consumed_by_ally_up_to_80%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 10, + ["min"] = 10, + ["statOrder"] = 9627, + }, + }, + ["targetType"] = "Ascendancy Notable", + ["targetValue"] = "", + }, + ["Master Alchemist"] = { + ["MaximumConnected"] = 100, + ["MinimumConnected"] = 0, + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", + ["dn"] = "Master Alchemist", + ["icon"] = "Art/2DArt/SkillIcons/passives/PathFinder/MasterAlchemist.png", + ["id"] = "AscendancyPathfinder8", + ["isTattoo"] = true, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["overrideType"] = "AscendancyTattooRanger", + ["sd"] = { + [1] = "Removes Elemental Ailments when you use a Flask", + [2] = "50% chance for Flasks you use to not consume Charges", + [3] = "Limited to 1 Ascendancy Tattoo", + }, + ["stats"] = { + ["dispel_status_ailments_on_flask_use"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 3298, + }, + ["flasks_%_chance_to_not_consume_charges"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 50, + ["min"] = 50, + ["statOrder"] = 4230, + }, + }, + ["targetType"] = "Ascendancy Notable", + ["targetValue"] = "", + }, + ["Master Distiller"] = { + ["MaximumConnected"] = 100, + ["MinimumConnected"] = 0, + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", + ["dn"] = "Master Distiller", + ["icon"] = "Art/2DArt/SkillIcons/passives/PathFinder/VeteranBowyer.png", + ["id"] = "AscendancyPathfinder10", + ["isTattoo"] = true, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["overrideType"] = "AscendancyTattooRanger", + ["sd"] = { + [1] = "Grant bonuses to Non-Channelling Skills you use by consuming 3 Charges from a Flask of", + [2] = "each of the following types, if possible:", + [3] = "If Diamond Flask Charges are consumed, 250% increased Critical Strike Chance", + [4] = "If Bismuth Flask Charges are consumed, Penetrate 25% Elemental Resistances", + [5] = "If Amethyst Flask Charges are consumed, 37% of Physical Damage as Extra Chaos Damage", + [6] = "Limited to 1 Ascendancy Tattoo", + }, + ["stats"] = { + ["pathfinder_skills_consume_x_charges_from_a_bismuth_diamond_or_amethyst_flask"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 3, + ["min"] = 3, + ["statOrder"] = 4429, + }, + ["pathfinder_skills_critical_strike_chance_+%_if_charges_consumed_from_diamond_flask"] = { + ["fmt"] = "d", + ["index"] = 3, + ["max"] = 250, + ["min"] = 250, + ["statOrder"] = 4430, + }, + ["pathfinder_skills_penetrate_elemental_resistances_%_if_charges_consumed_from_bismuth_flask"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 25, + ["min"] = 25, + ["statOrder"] = 4431, + }, + ["pathfinder_skills_physical_damage_%_to_add_as_chaos_if_charges_consumed_from_amethyst_flask"] = { + ["fmt"] = "d", + ["index"] = 4, + ["max"] = 37, + ["min"] = 37, + ["statOrder"] = 4432, + }, + }, + ["targetType"] = "Ascendancy Notable", + ["targetValue"] = "", + }, + ["Master Surgeon"] = { + ["MaximumConnected"] = 100, + ["MinimumConnected"] = 0, + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", + ["dn"] = "Master Surgeon", + ["icon"] = "Art/2DArt/SkillIcons/passives/PathFinder/MasterSurgeon.png", + ["id"] = "AscendancyPathfinder4", + ["isTattoo"] = true, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["overrideType"] = "AscendancyTattooRanger", + ["sd"] = { + [1] = "Life Flask Effects are not removed when Unreserved Life is Filled", + [2] = "Life Flask Effects do not Queue", + [3] = "50% less Life Recovery from Flasks", + [4] = "Limited to 1 Ascendancy Tattoo", + }, + ["stats"] = { + ["life_flask_effects_are_not_removed_at_full_life"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 7350, + }, + ["pathfinder_flask_life_to_recover_+%_final"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 50, + ["min"] = 50, + ["statOrder"] = 9589, + }, + }, + ["targetType"] = "Ascendancy Notable", + ["targetValue"] = "", + }, + ["Master Toxicist"] = { + ["MaximumConnected"] = 100, + ["MinimumConnected"] = 0, + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", + ["dn"] = "Master Toxicist", + ["icon"] = "Art/2DArt/SkillIcons/passives/PathFinder/Master Toxicist.png", + ["id"] = "AscendancyPathfinder14", + ["isTattoo"] = true, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["overrideType"] = "AscendancyTattooRanger", + ["sd"] = { + [1] = "When you kill a Poisoned Enemy during any Flask Effect, Enemies within 1.5 metres are Poisoned", + [2] = "Poisons you inflict during any Flask Effect have 20% chance to deal 100% more Damage", + [3] = "Limited to 1 Ascendancy Tattoo", + }, + ["stats"] = { + ["pathfinder_poison_damage_+100%_final_chance_during_flask_effect"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 20, + ["min"] = 20, + ["statOrder"] = 9590, + }, + ["unique_spread_poison_to_nearby_enemies_during_flask_effect"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 1042, + }, + }, + ["targetType"] = "Ascendancy Notable", + ["targetValue"] = "", + }, + ["Master of Metal"] = { + ["MaximumConnected"] = 100, + ["MinimumConnected"] = 0, + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", + ["dn"] = "Master of Metal", + ["icon"] = "Art/2DArt/SkillIcons/passives/Champion/ImpalePassiveNotable.png", + ["id"] = "AscendancyChampion14", + ["isTattoo"] = true, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["overrideType"] = "AscendancyTattooDuelist", + ["sd"] = { + [1] = "Impales you inflict last 1 additional Hit", + [2] = "If you've Impaled an Enemy Recently, you", + [3] = "and nearby Allies have +1000 to Armour", + [4] = "Limited to 1 Ascendancy Tattoo", + }, + ["stats"] = { + ["impaled_debuff_number_of_reflected_hits"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 7256, + }, + ["you_and_nearby_allies_armour_+_if_have_impaled_recently"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 1000, + ["min"] = 1000, + ["statOrder"] = 10639, + }, + }, + ["targetType"] = "Ascendancy Notable", + ["targetValue"] = "", + }, + ["Masterful Form"] = { + ["MaximumConnected"] = 100, + ["MinimumConnected"] = 0, + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", + ["dn"] = "Masterful Form", + ["icon"] = "Art/2DArt/SkillIcons/passives/Slayer/Charges.png", + ["id"] = "AscendancySlayer14", + ["isTattoo"] = true, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["overrideType"] = "AscendancyTattooDuelist", + ["sd"] = { + [1] = "Your Maximum Endurance Charges is equal to your Maximum Frenzy Charges", + [2] = "+1 to Maximum Frenzy Charges", + [3] = "Limited to 1 Ascendancy Tattoo", + }, + ["stats"] = { + ["max_frenzy_charges"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 10871, + }, + ["maximum_endurance_charges_is_equal_to_maximum_frenzy_charges"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 1805, + }, + }, + ["targetType"] = "Ascendancy Notable", + ["targetValue"] = "", + }, + ["Mastermind of Discord"] = { + ["MaximumConnected"] = 100, + ["MinimumConnected"] = 0, + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", + ["dn"] = "Mastermind of Discord", + ["icon"] = "Art/2DArt/SkillIcons/passives/Elementalist/PrimevalForce.png", + ["id"] = "AscendancyElementalist10", + ["isTattoo"] = true, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["overrideType"] = "AscendancyTattooWitch", + ["sd"] = { + [1] = "Exposure you inflict applies an extra -25% to the affected Resistance", + [2] = "Regenerate 1% of Mana per second if you've inflicted Exposure Recently", + [3] = "Limited to 1 Ascendancy Tattoo", + }, + ["stats"] = { + ["exposure_you_inflict_applies_extra_%_to_affected_resistance"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = -25, + ["min"] = -25, + ["statOrder"] = 6523, + }, + ["mana_regeneration_rate_per_minute_%_if_inflicted_exposure_recently"] = { + ["fmt"] = "g", + ["index"] = 2, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 8201, + }, + }, + ["targetType"] = "Ascendancy Notable", + ["targetValue"] = "", + }, + ["Measured Retaliation"] = { + ["MaximumConnected"] = 100, + ["MinimumConnected"] = 0, + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", + ["dn"] = "Measured Retaliation", + ["icon"] = "Art/2DArt/SkillIcons/passives/Gladiator/GLADViolentRetaliation.png", + ["id"] = "AscendancyGladiator11", + ["isTattoo"] = true, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["overrideType"] = "AscendancyTattooDuelist", + ["sd"] = { + [1] = "Retaliation Skills become Usable for an additional 2 seconds", + [2] = "50% chance for used Retaliation Skills to remain Usable and not consume a Cooldown Use", + [3] = "Limited to 1 Ascendancy Tattoo", + }, + ["stats"] = { + ["retaliation_skill_additional_use_window_duration_ms"] = { + ["fmt"] = "g", + ["index"] = 1, + ["max"] = 2, + ["min"] = 2, + ["statOrder"] = 9928, + }, + ["retaliation_skill_keep_use_requirement_and_prevent_cooldown_on_use_chance_%"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 50, + ["min"] = 50, + ["statOrder"] = 9932, + }, + }, + ["targetType"] = "Ascendancy Notable", + ["targetValue"] = "", + }, + ["Mind Over Matter"] = { + ["MaximumConnected"] = 100, + ["MinimumConnected"] = 0, + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", + ["dn"] = "Mind Over Matter", + ["icon"] = "Art/2DArt/SkillIcons/passives/heroicspirit.png", + ["id"] = "mana_shield1544", + ["isTattoo"] = true, + ["ks"] = true, + ["m"] = false, + ["not"] = false, + ["overrideType"] = "KeystoneTattoo", + ["sd"] = { + [1] = "40% of Damage is taken from Mana before Life", + [2] = "Limited to 1 Keystone Tattoo", + }, + ["stats"] = { + ["keystone_mana_shield"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 10900, + }, + }, + ["targetType"] = "Keystone", + ["targetValue"] = "", + }, + ["Mindless Aggression"] = { + ["MaximumConnected"] = 100, + ["MinimumConnected"] = 0, + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", + ["dn"] = "Mindless Aggression", + ["icon"] = "Art/2DArt/SkillIcons/passives/Necromancer/GenericMinionNotable.png", + ["id"] = "AscendancyNecromancer7", + ["isTattoo"] = true, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["overrideType"] = "AscendancyTattooWitch", + ["sd"] = { + [1] = "Minions have 20% more Maximum Life", + [2] = "Minions deal 10% more Damage", + [3] = "Limited to 1 Ascendancy Tattoo", + }, + ["stats"] = { + ["necromancer_defensive_notable_minion_maximum_life_+%_final"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 20, + ["min"] = 20, + ["statOrder"] = 9469, + }, + ["necromancer_minion_damage_+%_final"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 10, + ["min"] = 10, + ["statOrder"] = 9472, + }, + }, + ["targetType"] = "Ascendancy Notable", + ["targetValue"] = "", + }, + ["Minion Instability"] = { + ["MaximumConnected"] = 100, + ["MinimumConnected"] = 0, + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", + ["dn"] = "Minion Instability", + ["icon"] = "Art/2DArt/SkillIcons/passives/KeystoneMinionInstability.png", + ["id"] = "minion_instability1133", + ["isTattoo"] = true, + ["ks"] = true, + ["m"] = false, + ["not"] = false, + ["overrideType"] = "KeystoneTattoo", + ["sd"] = { + [1] = "Minions Explode when reduced to Low Life, dealing 33% of their Life as Fire Damage to surrounding Enemies", + [2] = "Limited to 1 Keystone Tattoo", + }, + ["stats"] = { + ["keystone_minion_instability"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 10891, + }, + }, + ["targetType"] = "Keystone", + ["targetValue"] = "", + }, + ["Mistress of Sacrifice"] = { + ["MaximumConnected"] = 100, + ["MinimumConnected"] = 0, + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", + ["dn"] = "Mistress of Sacrifice", + ["icon"] = "Art/2DArt/SkillIcons/passives/Necromancer/GiftsOfTheDamned.png", + ["id"] = "AscendancyNecromancer10", + ["isTattoo"] = true, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["overrideType"] = "AscendancyTattooWitch", + ["sd"] = { + [1] = "Your Offering Skills also affect you", + [2] = "Your Offerings have 50% reduced Effect on you", + [3] = "40% increased Skill Effect Duration", + [4] = "Limited to 1 Ascendancy Tattoo", + }, + ["stats"] = { + ["offerings_also_buff_you"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 1169, + }, + ["self_offering_effect_+%"] = { + ["fmt"] = "d", + ["index"] = 3, + ["max"] = 50, + ["min"] = 50, + ["statOrder"] = 1170, + }, + ["skill_effect_duration_+%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 40, + ["min"] = 40, + ["statOrder"] = 1895, + }, + }, + ["targetType"] = "Ascendancy Notable", + ["targetValue"] = "", + }, + ["Mistwalker"] = { + ["MaximumConnected"] = 100, + ["MinimumConnected"] = 0, + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", + ["dn"] = "Mistwalker", + ["icon"] = "Art/2DArt/SkillIcons/passives/Assassin/Elusive.png", + ["id"] = "AscendancyAssassin14", + ["isTattoo"] = true, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["overrideType"] = "AscendancyTattooShadow", + ["sd"] = { + [1] = "Gain Elusive on Critical Strike", + [2] = "100% increased Elusive Effect", + [3] = "You take no Extra Damage from Critical Strikes while Elusive", + [4] = "Limited to 1 Ascendancy Tattoo", + }, + ["stats"] = { + ["elusive_effect_+%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 100, + ["min"] = 100, + ["statOrder"] = 6350, + }, + ["gain_elusive_on_crit_%_chance"] = { + ["fmt"] = "d", + ["index"] = 3, + ["max"] = 100, + ["min"] = 100, + ["statOrder"] = 4281, + }, + ["self_take_no_extra_damage_from_critical_strikes_while_affected_by_elusive"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 9985, + }, + }, + ["targetType"] = "Ascendancy Notable", + ["targetValue"] = "", + }, + ["More Than Skill"] = { + ["MaximumConnected"] = 100, + ["MinimumConnected"] = 0, + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", + ["dn"] = "More Than Skill", + ["icon"] = "Art/2DArt/SkillIcons/passives/Gladiator/GLADVersitileCombatant.png", + ["id"] = "AscendancyGladiator12", + ["isTattoo"] = true, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["overrideType"] = "AscendancyTattooDuelist", + ["sd"] = { + [1] = "Chance to Block Attack or Spell Damage is Lucky if you've Blocked Recently", + [2] = "Limited to 1 Ascendancy Tattoo", + }, + ["stats"] = { + ["spell_and_attack_block_chance_is_lucky_if_blocked_recently"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 10127, + }, + }, + ["targetType"] = "Ascendancy Notable", + ["targetValue"] = "", + }, + ["Mother's Teachings"] = { + ["MaximumConnected"] = 100, + ["MinimumConnected"] = 0, + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", + ["dn"] = "Mother's Teachings", + ["icon"] = "Art/2DArt/SkillIcons/passives/Warden/WardenBarkskin1.png", + ["id"] = "AscendancyRaider6", + ["isTattoo"] = true, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["overrideType"] = "AscendancyTattooRanger", + ["sd"] = { + [1] = "Grants Level 20 Barkskin Skill", + [2] = "Limited to 1 Ascendancy Tattoo", + }, + ["stats"] = { + ["local_display_grants_skill_barkskin"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 20, + ["min"] = 20, + ["statOrder"] = 688, + }, + }, + ["targetType"] = "Ascendancy Notable", + ["targetValue"] = "", + }, + ["Mystical Infusion"] = { + ["MaximumConnected"] = 100, + ["MinimumConnected"] = 0, + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", + ["dn"] = "Mystical Infusion", + ["icon"] = "Art/2DArt/SkillIcons/passives/Assassin/DeadlyInfusion.png", + ["id"] = "AscendancyAssassin12", + ["isTattoo"] = true, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["overrideType"] = "AscendancyTattooShadow", + ["sd"] = { + [1] = "Base Spell Critical Strike Chance of Spells is equal to that of Main Hand Weapon", + [2] = "Limited to 1 Ascendancy Tattoo", + }, + ["stats"] = { + ["base_spell_critical_chance_equal_to_the_critical_strike_chance_of_main_weapon"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 5050, + }, + }, + ["targetType"] = "Ascendancy Notable", + ["targetValue"] = "", + }, + ["Nature's Adrenaline"] = { + ["MaximumConnected"] = 100, + ["MinimumConnected"] = 0, + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", + ["dn"] = "Nature's Adrenaline", + ["icon"] = "Art/2DArt/SkillIcons/passives/PathFinder/NaturesAdrenaline.png", + ["id"] = "AscendancyPathfinder2", + ["isTattoo"] = true, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["overrideType"] = "AscendancyTattooRanger", + ["sd"] = { + [1] = "Flasks gain 3 Charges every 3 seconds", + [2] = "Limited to 1 Ascendancy Tattoo", + }, + ["stats"] = { + ["flask_charges_recovered_per_3_seconds"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 3, + ["min"] = 3, + ["statOrder"] = 3478, + }, + }, + ["targetType"] = "Ascendancy Notable", + ["targetValue"] = "", + }, + ["Nature's Boon"] = { + ["MaximumConnected"] = 100, + ["MinimumConnected"] = 0, + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", + ["dn"] = "Nature's Boon", + ["icon"] = "Art/2DArt/SkillIcons/passives/PathFinder/AlchemistGift.png", + ["id"] = "AscendancyPathfinder6", + ["isTattoo"] = true, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["overrideType"] = "AscendancyTattooRanger", + ["sd"] = { + [1] = "Magic Utility Flasks applied to you have 30% increased Effect", + [2] = "Limited to 1 Ascendancy Tattoo", + }, + ["stats"] = { + ["magic_utility_flask_effect_+%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 30, + ["min"] = 30, + ["statOrder"] = 2743, + }, + }, + ["targetType"] = "Ascendancy Notable", + ["targetValue"] = "", + }, + ["Nature's Reprisal"] = { + ["MaximumConnected"] = 100, + ["MinimumConnected"] = 0, + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", + ["dn"] = "Nature's Reprisal", + ["icon"] = "Art/2DArt/SkillIcons/passives/PathFinder/MasterHerbalist.png", + ["id"] = "AscendancyPathfinder12", + ["isTattoo"] = true, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["overrideType"] = "AscendancyTattooRanger", + ["sd"] = { + [1] = "25% chance to inflict Withered for 2 seconds on Hit", + [2] = "50% increased Effect of Withered", + [3] = "Limited to 1 Ascendancy Tattoo", + }, + ["stats"] = { + ["withered_effect_+%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 50, + ["min"] = 50, + ["statOrder"] = 10626, + }, + ["withered_on_hit_for_2_seconds_%_chance"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 25, + ["min"] = 25, + ["statOrder"] = 4397, + }, + }, + ["targetType"] = "Ascendancy Notable", + ["targetValue"] = "", + }, + ["Necromancer"] = { + ["MaximumConnected"] = 100, + ["MinimumConnected"] = 0, + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", + ["dn"] = "Necromancer", + ["icon"] = "Art/2DArt/SkillIcons/passives/Ascendants/Necromancer.png", + ["id"] = "AscendancyAscendant39", + ["isTattoo"] = true, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["overrideType"] = "AscendancyTattooScion", + ["sd"] = { + [1] = "Your Offering Skills also affect you", + [2] = "Your Offerings have 50% reduced Effect on you", + [3] = "Minions deal 30% increased Damage", + [4] = "Auras from your Skills grant 2% increased Attack and Cast", + [5] = "Speed to you and Allies", + [6] = "If you've Consumed a corpse Recently, you and your Minions have 30% increased Area of Effect", + [7] = "Limited to 1 Ascendancy Tattoo", + }, + ["stats"] = { + ["area_of_effect_+%_for_you_and_minions_if_consumed_corpse_recently"] = { + ["fmt"] = "d", + ["index"] = 5, + ["max"] = 30, + ["min"] = 30, + ["statOrder"] = 4724, + }, + ["auras_grant_attack_and_cast_speed_+%_to_you_and_your_allies"] = { + ["fmt"] = "d", + ["index"] = 4, + ["max"] = 2, + ["min"] = 2, + ["statOrder"] = 3460, + }, + ["minion_damage_+%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 30, + ["min"] = 30, + ["statOrder"] = 1973, + }, + ["offerings_also_buff_you"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 1169, + }, + ["self_offering_effect_+%"] = { + ["fmt"] = "d", + ["index"] = 3, + ["max"] = 50, + ["min"] = 50, + ["statOrder"] = 1170, + }, + }, + ["targetType"] = "Ascendancy Notable", + ["targetValue"] = "", + }, + ["Necromantic Aegis"] = { + ["MaximumConnected"] = 100, + ["MinimumConnected"] = 0, + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", + ["dn"] = "Necromantic Aegis", + ["icon"] = "Art/2DArt/SkillIcons/passives/KeystoneNecromanticAegis.png", + ["id"] = "necromantic_aegis1175", + ["isTattoo"] = true, + ["ks"] = true, + ["m"] = false, + ["not"] = false, + ["overrideType"] = "KeystoneTattoo", + ["sd"] = { + [1] = "All bonuses from an Equipped Shield apply to your Minions instead of you", + [2] = "Limited to 1 Keystone Tattoo", + }, + ["stats"] = { + ["minions_get_shield_stats_instead_of_you"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 2192, + }, + }, + ["targetType"] = "Keystone", + ["targetValue"] = "", + }, + ["Ngamahu, Flame's Advance"] = { + ["MaximumConnected"] = 100, + ["MinimumConnected"] = 0, + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", + ["dn"] = "Ngamahu, Flame's Advance", + ["icon"] = "Art/2DArt/SkillIcons/passives/Chieftain/NgamahuFlamesAdvance.png", + ["id"] = "AscendancyChieftan8", + ["isTattoo"] = true, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["overrideType"] = "AscendancyTattooMarauder", + ["sd"] = { + [1] = "Non-Unique Jewels cause Increases and Reductions to other Damage Types in a Large Radius to be Transformed to apply to Fire Damage", + [2] = "Non-Unique Jewels cause Small and Notable Passive Skills in a Large Radius to", + [3] = "also grant +4 to Strength", + [4] = "Limited to 1 Ascendancy Tattoo", + }, + ["stats"] = { + ["display_additive_damage_modifiers_in_large_radius_of_non_unique_jewels_instead_apply_to_fire_damage"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 6194, + }, + ["display_passives_in_large_radius_of_non_unique_jewels_grant_additional_strength"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 4, + ["min"] = 4, + ["statOrder"] = 6248, + }, + }, + ["targetType"] = "Ascendancy Notable", + ["targetValue"] = "", + }, + ["Oath of Spring"] = { + ["MaximumConnected"] = 100, + ["MinimumConnected"] = 0, + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", + ["dn"] = "Oath of Spring", + ["icon"] = "Art/2DArt/SkillIcons/passives/Warden/WardenLightningAilments.png", + ["id"] = "AscendancyRaider2", + ["isTattoo"] = true, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["overrideType"] = "AscendancyTattooRanger", + ["sd"] = { + [1] = "Maximum Effect of Shock is 2% increased Damage taken", + [2] = "You can apply up to 50 Shocks to each Enemy", + [3] = "Limited to 1 Ascendancy Tattoo", + }, + ["stats"] = { + ["raider_shock_maximum_effect_override_%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 2, + ["min"] = 2, + ["statOrder"] = 9807, + }, + ["raider_shocks_you_apply_can_stack_up_to_50_times"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 9808, + }, + }, + ["targetType"] = "Ascendancy Notable", + ["targetValue"] = "", + }, + ["Oath of Summer"] = { + ["MaximumConnected"] = 100, + ["MinimumConnected"] = 0, + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", + ["dn"] = "Oath of Summer", + ["icon"] = "Art/2DArt/SkillIcons/passives/Warden/WardenFireAilments.png", + ["id"] = "AscendancyRaider10", + ["isTattoo"] = true, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["overrideType"] = "AscendancyTattooRanger", + ["sd"] = { + [1] = "Hits that would Ignite instead Scorch", + [2] = "You can inflict an additional Scorch on each Enemy", + [3] = "Limited to 1 Ascendancy Tattoo", + }, + ["stats"] = { + ["apply_scorch_instead_of_ignite"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 4698, + }, + ["can_apply_additional_scorch"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 5383, + }, + }, + ["targetType"] = "Ascendancy Notable", + ["targetValue"] = "", + }, + ["Oath of Winter"] = { + ["MaximumConnected"] = 100, + ["MinimumConnected"] = 0, + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", + ["dn"] = "Oath of Winter", + ["icon"] = "Art/2DArt/SkillIcons/passives/Warden/WardenColdAilments.png", + ["id"] = "AscendancyRaider4", + ["isTattoo"] = true, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["overrideType"] = "AscendancyTattooRanger", + ["sd"] = { + [1] = "Enemies you Freeze remain Frozen for at least 2 seconds", + [2] = "Hits that fail to Freeze due to insufficient Freeze Duration inflict Hoarfrost", + [3] = "Limited to 1 Ascendancy Tattoo", + }, + ["stats"] = { + ["freeze_minimum_duration_X_ms"] = { + ["fmt"] = "g", + ["index"] = 1, + ["max"] = 2, + ["min"] = 2, + ["statOrder"] = 6667, + }, + ["hoarfrost_on_non_freezing_freezing_hit"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 7173, + }, + }, + ["targetType"] = "Ascendancy Notable", + ["targetValue"] = "", + }, + ["Occultist"] = { + ["MaximumConnected"] = 100, + ["MinimumConnected"] = 0, + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", + ["dn"] = "Occultist", + ["icon"] = "Art/2DArt/SkillIcons/passives/Ascendants/Occultist.png", + ["id"] = "AscendancyAscendant37", + ["isTattoo"] = true, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["overrideType"] = "AscendancyTattooScion", + ["sd"] = { + [1] = "You can apply an additional Curse", + [2] = "10% increased Effect of your Curses", + [3] = "Regenerate 1.5% of Energy Shield per second", + [4] = "Cannot Be Stunned while you have Energy Shield", + [5] = "Limited to 1 Ascendancy Tattoo", + }, + ["stats"] = { + ["base_energy_shield_regeneration_rate_per_minute_%"] = { + ["fmt"] = "g", + ["index"] = 2, + ["max"] = 1.5, + ["min"] = 1.5, + ["statOrder"] = 2646, + }, + ["curse_effect_+%"] = { + ["fmt"] = "d", + ["index"] = 3, + ["max"] = 10, + ["min"] = 10, + ["statOrder"] = 2596, + }, + ["number_of_additional_curses_allowed"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 2168, + }, + ["occultist_immune_to_stun_while_has_energy_shield"] = { + ["fmt"] = "d", + ["index"] = 4, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 3743, + }, + }, + ["targetType"] = "Ascendancy Notable", + ["targetValue"] = "", + }, + ["Occupying Force"] = { + ["MaximumConnected"] = 100, + ["MinimumConnected"] = 0, + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", + ["dn"] = "Occupying Force", + ["icon"] = "Art/2DArt/SkillIcons/passives/Mirage.png", + ["id"] = "AscendancyDeadeye16", + ["isTattoo"] = true, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["overrideType"] = "AscendancyTattooRanger", + ["sd"] = { + [1] = "Mirage Archers are not attached to you", + [2] = "+2 to maximum number of Summoned Mirage Archers", + [3] = "Cannot Summon Mirage Archers while near your Mirage Archers", + [4] = "Limited to 1 Ascendancy Tattoo", + }, + ["stats"] = { + ["additional_max_mirage_archers"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 2, + ["min"] = 2, + ["statOrder"] = 4415, + }, + ["cannot_summon_mirage_archer_if_near_mirage_archer_radius"] = { + ["fmt"] = "d", + ["index"] = 3, + ["max"] = 35, + ["min"] = 35, + ["statOrder"] = 4416, + }, + ["mirage_archers_do_not_attach"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 4414, + }, + }, + ["targetType"] = "Ascendancy Notable", + ["targetValue"] = "", + }, + ["One Step Ahead"] = { + ["MaximumConnected"] = 100, + ["MinimumConnected"] = 0, + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", + ["dn"] = "One Step Ahead", + ["icon"] = "Art/2DArt/SkillIcons/passives/Trickster/OneStepAheadTrickster.png", + ["id"] = "AscendancyTrickster12", + ["isTattoo"] = true, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["overrideType"] = "AscendancyTattooShadow", + ["sd"] = { + [1] = "Your Action Speed is at least 90% of base value", + [2] = "Limited to 1 Ascendancy Tattoo", + }, + ["stats"] = { + ["action_speed_is_at_least_90%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 171, + }, + }, + ["targetType"] = "Ascendancy Notable", + ["targetValue"] = "", + }, + ["Opportunistic"] = { + ["MaximumConnected"] = 100, + ["MinimumConnected"] = 0, + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", + ["dn"] = "Opportunistic", + ["icon"] = "Art/2DArt/SkillIcons/passives/Assassin/Assassinate.png", + ["id"] = "AscendancyAssassin8", + ["isTattoo"] = true, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["overrideType"] = "AscendancyTattooShadow", + ["sd"] = { + [1] = "25% more Damage while there is at most one Rare or Unique Enemy nearby", + [2] = "Damage cannot be Reflected", + [3] = "35% less Damage taken while there are at least two Rare or Unique Enemies nearby", + [4] = "Limited to 1 Ascendancy Tattoo", + }, + ["stats"] = { + ["damage_+%_final_if_there_is_at_most_1_rare_or_unique_enemy_nearby"] = { + ["fmt"] = "d", + ["index"] = 3, + ["max"] = 25, + ["min"] = 25, + ["statOrder"] = 6014, + }, + ["damage_cannot_be_reflected"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 6021, + }, + ["damage_taken_+%_if_there_are_at_least_2_rare_or_unique_enemies_nearby"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 35, + ["min"] = 35, + ["statOrder"] = 6098, + }, + }, + ["targetType"] = "Ascendancy Notable", + ["targetValue"] = "", + }, + ["Overwhelm"] = { + ["MaximumConnected"] = 100, + ["MinimumConnected"] = 0, + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", + ["blockingPassive"] = { + [24698] = true, + }, + ["dn"] = "Overwhelm", + ["icon"] = "Art/2DArt/SkillIcons/passives/Slayer/CriticalAttacks.png", + ["id"] = "AscendancySlayer8", + ["isTattoo"] = true, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["overrideType"] = "AscendancyTattooDuelist", + ["sd"] = { + [1] = "Base Critical Strike Chance for Attacks with Weapons is 8%", + [2] = "+10% to Critical Strike Multiplier per Nearby Enemy, up to +100%", + [3] = "Limited to 1 Ascendancy Tattoo", + }, + ["stats"] = { + ["override_weapon_base_critical_strike_chance"] = { + ["fmt"] = "g", + ["index"] = 1, + ["max"] = 8, + ["min"] = 8, + ["statOrder"] = 9564, + }, + ["slayer_critical_strike_multiplier_+_per_nearby_enemy_up_to_100"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 10, + ["min"] = 10, + ["statOrder"] = 10076, + }, + }, + ["targetType"] = "Ascendancy Notable", + ["targetValue"] = "", + }, + ["Pain Attunement"] = { + ["MaximumConnected"] = 100, + ["MinimumConnected"] = 0, + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", + ["dn"] = "Pain Attunement", + ["icon"] = "Art/2DArt/SkillIcons/passives/KeystonePainAttunement.png", + ["id"] = "pain_attunement1178", + ["isTattoo"] = true, + ["ks"] = true, + ["m"] = false, + ["not"] = false, + ["overrideType"] = "KeystoneTattoo", + ["sd"] = { + [1] = "30% more Spell Damage when on Low Life", + [2] = "Limited to 1 Keystone Tattoo", + }, + ["stats"] = { + ["keystone_pain_attunement"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 10885, + }, + }, + ["targetType"] = "Keystone", + ["targetValue"] = "", + }, + ["Pathfinder"] = { + ["MaximumConnected"] = 100, + ["MinimumConnected"] = 0, + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", + ["dn"] = "Pathfinder", + ["icon"] = "Art/2DArt/SkillIcons/passives/Ascendants/Pathfinder.png", + ["id"] = "AscendancyAscendant36", + ["isTattoo"] = true, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["overrideType"] = "AscendancyTattooScion", + ["sd"] = { + [1] = "10% increased Movement Speed during any Flask Effect", + [2] = "10% increased Attack Speed during any Flask Effect", + [3] = "Removes Bleeding when you use a Flask", + [4] = "Flasks gain 3 Charges every 3 seconds", + [5] = "25% chance for Flasks you use to not consume Charges", + [6] = "Limited to 1 Ascendancy Tattoo", + }, + ["stats"] = { + ["attack_speed_+%_during_flask_effect"] = { + ["fmt"] = "d", + ["index"] = 3, + ["max"] = 10, + ["min"] = 10, + ["statOrder"] = 3300, + }, + ["flask_charges_recovered_per_3_seconds"] = { + ["fmt"] = "d", + ["index"] = 4, + ["max"] = 3, + ["min"] = 3, + ["statOrder"] = 3478, + }, + ["flasks_%_chance_to_not_consume_charges"] = { + ["fmt"] = "d", + ["index"] = 5, + ["max"] = 25, + ["min"] = 25, + ["statOrder"] = 4230, + }, + ["movement_speed_+%_during_flask_effect"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 10, + ["min"] = 10, + ["statOrder"] = 3186, + }, + ["remove_bleed_on_flask_use"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 3386, + }, + }, + ["targetType"] = "Ascendancy Notable", + ["targetValue"] = "", + }, + ["Perfect Agony"] = { + ["MaximumConnected"] = 100, + ["MinimumConnected"] = 0, + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", + ["dn"] = "Perfect Agony", + ["icon"] = "Art/2DArt/SkillIcons/passives/CritAilments.png", + ["id"] = "damage_ailment_critical_keystone_2182", + ["isTattoo"] = true, + ["ks"] = true, + ["m"] = false, + ["not"] = false, + ["overrideType"] = "KeystoneTattoo", + ["sd"] = { + [1] = "Damage over Time Multiplier for Ailments is equal to Critical Strike Multiplier", + [2] = "Critical Strikes do not deal extra Damage", + [3] = "Non-Critical Strikes cannot inflict Ailments", + [4] = "Limited to 1 Keystone Tattoo", + }, + ["stats"] = { + ["keystone_ailment_crit"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 10929, + }, + }, + ["targetType"] = "Keystone", + ["targetValue"] = "", + }, + ["Perfect Crime"] = { + ["MaximumConnected"] = 100, + ["MinimumConnected"] = 0, + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", + ["dn"] = "Perfect Crime", + ["icon"] = "Art/2DArt/SkillIcons/passives/Saboteur/PerfectCrime.png", + ["id"] = "AscendancySaboteur10", + ["isTattoo"] = true, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["overrideType"] = "AscendancyTattooShadow", + ["sd"] = { + [1] = "Triggers Level 20 Summon Triggerbots when Allocated", + [2] = "30% less Damage with Triggered Spells", + [3] = "Limited to 1 Ascendancy Tattoo", + }, + ["stats"] = { + ["local_display_cast_triggerbots_on_gain_skill"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 20, + ["min"] = 20, + ["statOrder"] = 777, + }, + ["triggerbots_damage_+%_final_with_triggered_spells"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 30, + ["min"] = 30, + ["statOrder"] = 10431, + }, + }, + ["targetType"] = "Ascendancy Notable", + ["targetValue"] = "", + }, + ["Pious Path"] = { + ["MaximumConnected"] = 100, + ["MinimumConnected"] = 0, + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", + ["blockingPassive"] = { + [52104] = true, + }, + ["dn"] = "Pious Path", + ["icon"] = "Art/2DArt/SkillIcons/passives/Inquistitor/GloryOfTheSavant.png", + ["id"] = "AscendancyInquisitor12", + ["isTattoo"] = true, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["overrideType"] = "AscendancyTattooTemplar", + ["sd"] = { + [1] = "Consecrated Ground you create causes Life Regeneration to", + [2] = "also Recover Energy Shield for you and Allies", + [3] = "Effects of Consecrated Ground you create Linger for 4 seconds", + [4] = "Limited to 1 Ascendancy Tattoo", + }, + ["stats"] = { + ["consecrated_ground_allies_recover_es_as_well_as_life_from_life_regeneration"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 5844, + }, + ["your_consecrated_ground_effect_lingers_for_ms_after_leaving_the_area"] = { + ["fmt"] = "g", + ["index"] = 1, + ["max"] = 4, + ["min"] = 4, + ["statOrder"] = 10690, + }, + }, + ["targetType"] = "Ascendancy Notable", + ["targetValue"] = "", + }, + ["Plaguebringer"] = { + ["MaximumConnected"] = 100, + ["MinimumConnected"] = 0, + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", + ["dn"] = "Plaguebringer", + ["icon"] = "Art/2DArt/SkillIcons/passives/Necromancer/PlagueBringer.png", + ["id"] = "AscendancyNecromancer14", + ["isTattoo"] = true, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["overrideType"] = "AscendancyTattooWitch", + ["sd"] = { + [1] = "If you've Consumed a corpse Recently, you and your Minions have 30% increased Area of Effect", + [2] = "With at least one nearby corpse, you and nearby Allies deal 10% more Damage", + [3] = "With at least one nearby corpse, nearby Enemies deal 10% reduced Damage", + [4] = "Limited to 1 Ascendancy Tattoo", + }, + ["stats"] = { + ["area_of_effect_+%_for_you_and_minions_if_consumed_corpse_recently"] = { + ["fmt"] = "d", + ["index"] = 3, + ["max"] = 30, + ["min"] = 30, + ["statOrder"] = 4724, + }, + ["necromancer_damage_+%_final_for_you_and_allies_with_nearby_corpse"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 10, + ["min"] = 10, + ["statOrder"] = 9467, + }, + ["necromancer_damage_+%_for_nearby_enemies_with_nearby_corpse"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 10, + ["min"] = 10, + ["statOrder"] = 9468, + }, + }, + ["targetType"] = "Ascendancy Notable", + ["targetValue"] = "", + }, + ["Point Blank"] = { + ["MaximumConnected"] = 100, + ["MinimumConnected"] = 0, + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", + ["dn"] = "Point Blank", + ["icon"] = "Art/2DArt/SkillIcons/passives/KeystonePointBlankArcher.png", + ["id"] = "point_blank1182", + ["isTattoo"] = true, + ["ks"] = true, + ["m"] = false, + ["not"] = false, + ["overrideType"] = "KeystoneTattoo", + ["sd"] = { + [1] = "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", + [2] = "Limited to 1 Keystone Tattoo", + }, + ["stats"] = { + ["keystone_point_blank"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 10887, + }, + }, + ["targetType"] = "Keystone", + ["targetValue"] = "", + }, + ["Polymath"] = { + ["MaximumConnected"] = 100, + ["MinimumConnected"] = 0, + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", + ["dn"] = "Polymath", + ["icon"] = "Art/2DArt/SkillIcons/passives/Trickster/PolymathTrickster.png", + ["id"] = "AscendancyTrickster4", + ["isTattoo"] = true, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["overrideType"] = "AscendancyTattooShadow", + ["sd"] = { + [1] = "2% more Damage for each different type of Mastery you have Allocated", + [2] = "Recover 1% of Life on Kill for each different type of Mastery you have Allocated", + [3] = "Recover 1% of Energy Shield on Kill for each different type of Mastery you have Allocated", + [4] = "Recover 1% of Mana on Kill for each different type of Mastery you have Allocated", + [5] = "Limited to 1 Ascendancy Tattoo", + }, + ["stats"] = { + ["recover_%_es_on_kill_per_different_mastery"] = { + ["fmt"] = "d", + ["index"] = 4, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 1673, + }, + ["recover_%_life_on_kill_per_different_mastery"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 1658, + }, + ["recover_%_mana_on_kill_per_different_mastery"] = { + ["fmt"] = "d", + ["index"] = 3, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 1690, + }, + ["trickster_damage_+%_final_per_different_mastery"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 2, + ["min"] = 2, + ["statOrder"] = 1646, + }, + }, + ["targetType"] = "Ascendancy Notable", + ["targetValue"] = "", + }, + ["Precise Technique"] = { + ["MaximumConnected"] = 100, + ["MinimumConnected"] = 0, + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", + ["dn"] = "Precise Technique", + ["icon"] = "Art/2DArt/SkillIcons/passives/PreciseTechnique.png", + ["id"] = "verdant_precision_keystone2858", + ["isTattoo"] = true, + ["ks"] = true, + ["m"] = false, + ["not"] = false, + ["overrideType"] = "KeystoneTattoo", + ["sd"] = { + [1] = "40% more Attack Damage if Accuracy Rating is higher than Maximum Life", + [2] = "Never deal Critical Strikes", + [3] = "Limited to 1 Keystone Tattoo", + }, + ["stats"] = { + ["keystone_precise_technique"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 10955, + }, + }, + ["targetType"] = "Keystone", + ["targetValue"] = "", + }, + ["Profane Bloom"] = { + ["MaximumConnected"] = 100, + ["MinimumConnected"] = 0, + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", + ["dn"] = "Profane Bloom", + ["icon"] = "Art/2DArt/SkillIcons/passives/Occultist/LotusExtract.png", + ["id"] = "AscendancyOccultist7", + ["isTattoo"] = true, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["overrideType"] = "AscendancyTattooWitch", + ["sd"] = { + [1] = "Cursed Enemies you or your Minions Kill have a 50% chance to Explode, dealing a quarter of their maximum Life as Chaos Damage", + [2] = "Limited to 1 Ascendancy Tattoo", + }, + ["stats"] = { + ["explode_cursed_enemies_for_25%_life_as_chaos_on_kill_chance_%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 50, + ["min"] = 50, + ["statOrder"] = 3306, + }, + }, + ["targetType"] = "Ascendancy Notable", + ["targetValue"] = "", + }, + ["Pursuit of Faith"] = { + ["MaximumConnected"] = 100, + ["MinimumConnected"] = 0, + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", + ["dn"] = "Pursuit of Faith", + ["icon"] = "Art/2DArt/SkillIcons/passives/Hierophant/SpiritualEmpowerment.png", + ["id"] = "AscendancyHeirophant9", + ["isTattoo"] = true, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["overrideType"] = "AscendancyTattooTemplar", + ["sd"] = { + [1] = "100% increased Totem Duration", + [2] = "+1 to maximum number of Summoned Totems", + [3] = "100% increased Totem Placement speed", + [4] = "Limited to 1 Ascendancy Tattoo", + }, + ["stats"] = { + ["number_of_additional_totems_allowed"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 2254, + }, + ["summon_totem_cast_speed_+%"] = { + ["fmt"] = "d", + ["index"] = 3, + ["max"] = 100, + ["min"] = 100, + ["statOrder"] = 2578, + }, + ["totem_duration_+%"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 100, + ["min"] = 100, + ["statOrder"] = 1778, + }, + }, + ["targetType"] = "Ascendancy Notable", + ["targetValue"] = "", + }, + ["Pyromaniac"] = { + ["MaximumConnected"] = 100, + ["MinimumConnected"] = 0, + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", + ["dn"] = "Pyromaniac", + ["icon"] = "Art/2DArt/SkillIcons/passives/Saboteur/BlindedAssult.png", + ["id"] = "AscendancySaboteur2", + ["isTattoo"] = true, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["overrideType"] = "AscendancyTattooShadow", + ["sd"] = { + [1] = "Immune to Ignite and Shock", + [2] = "Regenerate 2% of Life per second for each Mine Detonated Recently, up to 10% per second", + [3] = "Regenerate 2% of Life per Second for each Trap Triggered Recently, up to 10% per second", + [4] = "Limited to 1 Ascendancy Tattoo", + }, + ["stats"] = { + ["immune_to_ignite_and_shock"] = { + ["fmt"] = "d", + ["index"] = 3, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 7233, + }, + ["life_regeneration_rate_per_minute_%_per_mine_detonated_recently_up_to_20%"] = { + ["fmt"] = "g", + ["index"] = 2, + ["max"] = 2, + ["min"] = 2, + ["statOrder"] = 7420, + }, + ["life_regeneration_rate_per_minute_%_per_trap_triggered_recently_up_to_20%"] = { + ["fmt"] = "g", + ["index"] = 1, + ["max"] = 2, + ["min"] = 2, + ["statOrder"] = 7424, + }, + }, + ["targetType"] = "Ascendancy Notable", + ["targetValue"] = "", + }, + ["Radiant Crusade"] = { + ["MaximumConnected"] = 100, + ["MinimumConnected"] = 0, + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", + ["blockingPassive"] = { + [40299] = true, + }, + ["dn"] = "Radiant Crusade", + ["icon"] = "Art/2DArt/SkillIcons/passives/Guardian/Radient Crusade.png", + ["id"] = "AscendancyGuardian14", + ["isTattoo"] = true, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["overrideType"] = "AscendancyTattooTemplar", + ["sd"] = { + [1] = "Grants Level 20 Summon Sentinel of Radiance Skill", + [2] = "20% of Damage from Hits is taken from your Sentinel of Radiance's Life before you", + [3] = "Limited to 1 Ascendancy Tattoo", + }, + ["stats"] = { + ["damage_removed_from_radiant_sentinel_before_life_or_es_%"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 20, + ["min"] = 20, + ["statOrder"] = 6091, + }, + ["local_display_grants_skill_summon_radiant_sentinel"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 20, + ["min"] = 20, + ["statOrder"] = 721, + }, + }, + ["targetType"] = "Ascendancy Notable", + ["targetValue"] = "", + }, + ["Radiant Faith"] = { + ["MaximumConnected"] = 100, + ["MinimumConnected"] = 0, + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", + ["dn"] = "Radiant Faith", + ["icon"] = "Art/2DArt/SkillIcons/passives/Guardian/RadientFaith.png", + ["id"] = "AscendancyGuardian3", + ["isTattoo"] = true, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["overrideType"] = "AscendancyTattooTemplar", + ["sd"] = { + [1] = "Grants Armour equal to 25% of your Reserved Mana to you and nearby Allies", + [2] = "Grants maximum Energy Shield equal to 10% of your Reserved Mana to", + [3] = "you and nearby Allies", + [4] = "Limited to 1 Ascendancy Tattoo", + }, + ["stats"] = { + ["guardian_reserved_mana_%_given_to_you_and_nearby_allies_as_base_maximum_energy_shield"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 10, + ["min"] = 10, + ["statOrder"] = 3784, + }, + ["guardian_reserved_mana_granted_to_you_and_allies_as_armour_%"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 25, + ["min"] = 25, + ["statOrder"] = 3783, + }, + }, + ["targetType"] = "Ascendancy Notable", + ["targetValue"] = "", + }, + ["Ramako, Sun's Light"] = { + ["MaximumConnected"] = 100, + ["MinimumConnected"] = 0, + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", + ["dn"] = "Ramako, Sun's Light", + ["icon"] = "Art/2DArt/SkillIcons/passives/Chieftain/RamakoSunsLight.png", + ["id"] = "AscendancyChieftan14", + ["isTattoo"] = true, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["overrideType"] = "AscendancyTattooMarauder", + ["sd"] = { + [1] = "Limited to 1 Ascendancy Tattoo", + }, + ["stats"] = { + }, + ["targetType"] = "Ascendancy Notable", + ["targetValue"] = "", + }, + ["Resolute Technique"] = { + ["MaximumConnected"] = 100, + ["MinimumConnected"] = 0, + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", + ["dn"] = "Resolute Technique", + ["icon"] = "Art/2DArt/SkillIcons/passives/KeystoneResoluteTechnique.png", + ["id"] = "resolute_technique1138", + ["isTattoo"] = true, + ["ks"] = true, + ["m"] = false, + ["not"] = false, + ["overrideType"] = "KeystoneTattoo", + ["sd"] = { + [1] = "Your hits can't be Evaded", + [2] = "Never deal Critical Strikes", + [3] = "Limited to 1 Keystone Tattoo", + }, + ["stats"] = { + ["resolute_technique"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 10901, + }, + }, + ["targetType"] = "Keystone", + ["targetValue"] = "", + }, + ["Ricochet"] = { + ["MaximumConnected"] = 100, + ["MinimumConnected"] = 0, + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", + ["dn"] = "Ricochet", + ["icon"] = "Art/2DArt/SkillIcons/passives/DeadEye/Ricochet.png", + ["id"] = "AscendancyDeadeye4", + ["isTattoo"] = true, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["overrideType"] = "AscendancyTattooRanger", + ["sd"] = { + [1] = "Skills Chain +1 times", + [2] = "Projectiles have 30% chance to be able to Chain when colliding with terrain", + [3] = "Limited to 1 Ascendancy Tattoo", + }, + ["stats"] = { + ["number_of_chains"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 1789, + }, + ["projectile_chain_from_terrain_chance_%"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 30, + ["min"] = 30, + ["statOrder"] = 1827, + }, + }, + ["targetType"] = "Ascendancy Notable", + ["targetValue"] = "", + }, + ["Righteous Providence"] = { + ["MaximumConnected"] = 100, + ["MinimumConnected"] = 0, + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", + ["dn"] = "Righteous Providence", + ["icon"] = "Art/2DArt/SkillIcons/passives/Inquistitor/ElementalMastery.png", + ["id"] = "AscendancyInquisitor7", + ["isTattoo"] = true, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["overrideType"] = "AscendancyTattooTemplar", + ["sd"] = { + [1] = "1% increased Critical Strike Chance per point of Strength or Intelligence, whichever is lower", + [2] = "+50 to Strength and Intelligence", + [3] = "Limited to 1 Ascendancy Tattoo", + }, + ["stats"] = { + ["base_strength_and_intelligence"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 50, + ["min"] = 50, + ["statOrder"] = 10905, + }, + ["increase_crit_chance_by_lowest_of_str_or_int"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 7264, + }, + }, + ["targetType"] = "Ascendancy Notable", + ["targetValue"] = "", + }, + ["Rite of Ruin"] = { + ["MaximumConnected"] = 100, + ["MinimumConnected"] = 0, + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", + ["dn"] = "Rite of Ruin", + ["icon"] = "Art/2DArt/SkillIcons/passives/Berserker/RiteOfRuin.png", + ["id"] = "AscendancyBerserker8", + ["isTattoo"] = true, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["overrideType"] = "AscendancyTattooMarauder", + ["sd"] = { + [1] = "Lose 0.1% of Life per second per Rage while you are not losing Rage", + [2] = "50% increased Rage Effect", + [3] = "Limited to 1 Ascendancy Tattoo", + }, + ["stats"] = { + ["life_loss_%_per_minute_per_rage_while_not_losing_rage"] = { + ["fmt"] = "g", + ["index"] = 2, + ["max"] = 0.1, + ["min"] = 0.1, + ["statOrder"] = 7382, + }, + ["rage_effect_+%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 50, + ["min"] = 50, + ["statOrder"] = 9795, + }, + }, + ["targetType"] = "Ascendancy Notable", + ["targetValue"] = "", + }, + ["Ritual of Awakening"] = { + ["MaximumConnected"] = 100, + ["MinimumConnected"] = 0, + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", + ["dn"] = "Ritual of Awakening", + ["icon"] = "Art/2DArt/SkillIcons/passives/Hierophant/AncestralZeal.png", + ["id"] = "AscendancyHeirophant10", + ["isTattoo"] = true, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["overrideType"] = "AscendancyTattooTemplar", + ["sd"] = { + [1] = "5% more Damage per Summoned Totem", + [2] = "Regenerate 0.5% of Mana per second for each Summoned Totem", + [3] = "You and your Totems Regenerate 1% of Life per second for each Summoned Totem", + [4] = "Limited to 1 Ascendancy Tattoo", + }, + ["stats"] = { + ["hierophant_passive_damage_+%_final_per_totem"] = { + ["fmt"] = "d", + ["index"] = 3, + ["max"] = 5, + ["min"] = 5, + ["statOrder"] = 3745, + }, + ["mana_regeneration_rate_per_minute_%_per_active_totem"] = { + ["fmt"] = "g", + ["index"] = 2, + ["max"] = 0.5, + ["min"] = 0.5, + ["statOrder"] = 8202, + }, + ["you_and_totem_life_regeneration_rate_per_minute_%_per_active_totem"] = { + ["fmt"] = "g", + ["index"] = 1, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 10647, + }, + }, + ["targetType"] = "Ascendancy Notable", + ["targetValue"] = "", + }, + ["Runebinder"] = { + ["MaximumConnected"] = 100, + ["MinimumConnected"] = 0, + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", + ["dn"] = "Runebinder", ["icon"] = "Art/2DArt/SkillIcons/passives/BrandKeystone.png", ["id"] = "sigil_totem_keystone", ["isTattoo"] = true, @@ -1951,1257 +6428,2598 @@ return { ["not"] = false, ["overrideType"] = "KeystoneTattoo", ["sd"] = { - [1] = "-1 to maximum number of Summoned Totems", - [2] = "You can have an additional Brand Attached to an Enemy", + [1] = "-1 to maximum number of Summoned Totems", + [2] = "You can have an additional Brand Attached to an Enemy", + [3] = "Limited to 1 Keystone Tattoo", + }, + ["stats"] = { + ["keystone_runebinder"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 10960, + }, + }, + ["targetType"] = "Keystone", + ["targetValue"] = "", + }, + ["Runegraft of Bellows"] = { + ["MaximumConnected"] = 100, + ["MinimumConnected"] = 0, + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/Village/RuneCraftingPassiveBG.png", + ["dn"] = "Runegraft of Bellows", + ["icon"] = "Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon13.png", + ["id"] = "runegraft_8", + ["isTattoo"] = true, + ["ks"] = false, + ["m"] = true, + ["name"] = "Runegraft Mastery", + ["not"] = false, + ["overrideType"] = "AlternateMastery", + ["sd"] = { + [1] = "100% increased Warcry Speed if you have not Warcried Recently", + [2] = "Limited to 1 Runegraft of Bellows", + }, + ["stats"] = { + ["warcry_speed_+%_if_not_warcried_recently"] = { + ["fmt"] = "d", + ["max"] = 100, + ["min"] = 100, + }, + }, + ["targetType"] = "Mastery", + ["targetValue"] = "", + }, + ["Runegraft of Blasphemy"] = { + ["MaximumConnected"] = 100, + ["MinimumConnected"] = 0, + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/Village/RuneCraftingPassiveBG.png", + ["dn"] = "Runegraft of Blasphemy", + ["icon"] = "Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon15.png", + ["id"] = "runegraft_10", + ["isTattoo"] = true, + ["ks"] = false, + ["m"] = true, + ["name"] = "Runegraft Mastery", + ["not"] = false, + ["overrideType"] = "AlternateMastery", + ["sd"] = { + [1] = "30% chance to Curse non-Cursed Enemies with a random Hex on Hit", + [2] = "Limited to 1 Runegraft of Blasphemy", + }, + ["stats"] = { + ["random_curse_on_hit_%_against_uncursed_enemies"] = { + ["fmt"] = "d", + ["max"] = 30, + ["min"] = 30, + }, + }, + ["targetType"] = "Mastery", + ["targetValue"] = "", + }, + ["Runegraft of Connection"] = { + ["MaximumConnected"] = 100, + ["MinimumConnected"] = 0, + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/Village/RuneCraftingPassiveBG.png", + ["dn"] = "Runegraft of Connection", + ["icon"] = "Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon29.png", + ["id"] = "runegraft_35", + ["isTattoo"] = true, + ["ks"] = false, + ["m"] = true, + ["name"] = "Runegraft Mastery", + ["not"] = false, + ["overrideType"] = "AlternateMastery", + ["sd"] = { + [1] = "Link Skills have 50% increased range", + [2] = "Limited to 1 Runegraft of Connection", + }, + ["stats"] = { + ["link_skill_range_+%"] = { + ["fmt"] = "d", + ["max"] = 50, + ["min"] = 50, + }, + }, + ["targetType"] = "Mastery", + ["targetValue"] = "", + }, + ["Runegraft of Consecration"] = { + ["MaximumConnected"] = 100, + ["MinimumConnected"] = 0, + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/Village/RuneCraftingPassiveBG.png", + ["dn"] = "Runegraft of Consecration", + ["icon"] = "Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon36.png", + ["id"] = "runegraft_26", + ["isTattoo"] = true, + ["ks"] = false, + ["m"] = true, + ["name"] = "Runegraft Mastery", + ["not"] = false, + ["overrideType"] = "AlternateMastery", + ["sd"] = { + [1] = "Consecrated Ground you create grants 30% increased Mana Regeneration", + [2] = "Rate to you and Allies", + [3] = "Limited to 1 Runegraft of Consecration", + }, + ["stats"] = { + ["your_consecrated_ground_grants_mana_regeneration_rate_+%"] = { + ["fmt"] = "d", + ["max"] = 30, + ["min"] = 30, + }, + }, + ["targetType"] = "Mastery", + ["targetValue"] = "", + }, + ["Runegraft of Fury"] = { + ["MaximumConnected"] = 100, + ["MinimumConnected"] = 0, + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/Village/RuneCraftingPassiveBG.png", + ["dn"] = "Runegraft of Fury", + ["icon"] = "Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon34.png", + ["id"] = "runegraft_27", + ["isTattoo"] = true, + ["ks"] = false, + ["m"] = true, + ["name"] = "Runegraft Mastery", + ["not"] = false, + ["overrideType"] = "AlternateMastery", + ["sd"] = { + [1] = "Gain 3 Rage when you use a Life Flask", + [2] = "Limited to 1 Runegraft of Fury", + }, + ["stats"] = { + ["gain_x_rage_when_you_use_a_life_flask"] = { + ["fmt"] = "d", + ["max"] = 3, + ["min"] = 3, + }, + }, + ["targetType"] = "Mastery", + ["targetValue"] = "", + }, + ["Runegraft of Gemcraft"] = { + ["MaximumConnected"] = 100, + ["MinimumConnected"] = 0, + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/Village/RuneCraftingPassiveBG.png", + ["dn"] = "Runegraft of Gemcraft", + ["icon"] = "Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon14.png", + ["id"] = "runegraft_9", + ["isTattoo"] = true, + ["ks"] = false, + ["m"] = true, + ["name"] = "Runegraft Mastery", + ["not"] = false, + ["overrideType"] = "AlternateMastery", + ["sd"] = { + [1] = "+1 to Level of all non-Exceptional Support Gems", + [2] = "Limited to 1 Runegraft of Gemcraft", + }, + ["stats"] = { + ["non_exceptional_support_gem_level_+"] = { + ["fmt"] = "d", + ["max"] = 1, + ["min"] = 1, + }, + }, + ["targetType"] = "Mastery", + ["targetValue"] = "", + }, + ["Runegraft of Loyalty"] = { + ["MaximumConnected"] = 100, + ["MinimumConnected"] = 0, + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/Village/RuneCraftingPassiveBG.png", + ["dn"] = "Runegraft of Loyalty", + ["icon"] = "Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon23.png", + ["id"] = "runegraft_18", + ["isTattoo"] = true, + ["ks"] = false, + ["m"] = true, + ["name"] = "Runegraft Mastery", + ["not"] = false, + ["overrideType"] = "AlternateMastery", + ["sd"] = { + [1] = "40% chance for Elemental Ailments inflicted on you to", + [2] = "be inflicted on a nearby Minion instead", + [3] = "Limited to 1 Runegraft of Loyalty", + }, + ["stats"] = { + ["chance_%_elemental_ailments_redirected_to_nearby_minion"] = { + ["fmt"] = "d", + ["max"] = 40, + ["min"] = 40, + }, + }, + ["targetType"] = "Mastery", + ["targetValue"] = "", + }, + ["Runegraft of Quaffing"] = { + ["MaximumConnected"] = 100, + ["MinimumConnected"] = 0, + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/Village/RuneCraftingPassiveBG.png", + ["dn"] = "Runegraft of Quaffing", + ["icon"] = "Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon21.png", + ["id"] = "runegraft_16", + ["isTattoo"] = true, + ["ks"] = false, + ["m"] = true, + ["name"] = "Runegraft Mastery", + ["not"] = false, + ["overrideType"] = "AlternateMastery", + ["sd"] = { + [1] = "25% reduced Mana Recovery from Flasks", + [2] = "Non-instant Mana Recovery from Flasks is also Recovered as Life", + [3] = "Limited to 1 Runegraft of Quaffing", + }, + ["stats"] = { + ["flask_mana_to_recover_+%"] = { + ["fmt"] = "d", + ["max"] = 25, + ["min"] = 25, + }, + ["non_instant_mana_recovery_from_flasks_also_recovers_life"] = { + ["fmt"] = "d", + ["max"] = 1, + ["min"] = 1, + }, + }, + ["targetType"] = "Mastery", + ["targetValue"] = "", + }, + ["Runegraft of Rallying"] = { + ["MaximumConnected"] = 100, + ["MinimumConnected"] = 0, + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/Village/RuneCraftingPassiveBG.png", + ["dn"] = "Runegraft of Rallying", + ["icon"] = "Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon37.png", + ["id"] = "runegraft_28", + ["isTattoo"] = true, + ["ks"] = false, + ["m"] = true, + ["name"] = "Runegraft Mastery", + ["not"] = false, + ["overrideType"] = "AlternateMastery", + ["sd"] = { + [1] = "Gain 1 Fortification per 5 Valour consumed to place a Banner", + [2] = "Limited to 1 Runegraft of Rallying", + }, + ["stats"] = { + ["banner_grant_1_fortify_when_placed_per_X_resources_from_runegraft"] = { + ["fmt"] = "d", + ["max"] = 5, + ["min"] = 5, + }, + }, + ["targetType"] = "Mastery", + ["targetValue"] = "", + }, + ["Runegraft of Refraction"] = { + ["MaximumConnected"] = 100, + ["MinimumConnected"] = 0, + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/Village/RuneCraftingPassiveBG.png", + ["dn"] = "Runegraft of Refraction", + ["icon"] = "Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon7.png", + ["id"] = "runegraft_21", + ["isTattoo"] = true, + ["ks"] = false, + ["m"] = true, + ["name"] = "Runegraft Mastery", + ["not"] = false, + ["overrideType"] = "AlternateMastery", + ["sd"] = { + [1] = "Fire at most 1 Projectile", + [2] = "Projectiles Fork", + [3] = "Projectiles Chain an additional time", + [4] = "Limited to 1 Runegraft of Refraction", + }, + ["stats"] = { + ["maximum_number_of_projectiles_to_fire_is_1"] = { + ["fmt"] = "d", + ["max"] = 1, + ["min"] = 1, + }, + ["number_of_additional_chains_for_projectiles"] = { + ["fmt"] = "d", + ["max"] = 1, + ["min"] = 1, + }, + ["projectiles_fork"] = { + ["fmt"] = "d", + ["max"] = 1, + ["min"] = 1, + }, + }, + ["targetType"] = "Mastery", + ["targetValue"] = "", + }, + ["Runegraft of Restitching"] = { + ["MaximumConnected"] = 100, + ["MinimumConnected"] = 0, + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/Village/RuneCraftingPassiveBG.png", + ["dn"] = "Runegraft of Restitching", + ["icon"] = "Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon22.png", + ["id"] = "runegraft_17", + ["isTattoo"] = true, + ["ks"] = false, + ["m"] = true, + ["name"] = "Runegraft Mastery", + ["not"] = false, + ["overrideType"] = "AlternateMastery", + ["sd"] = { + [1] = "40% of Damage taken from Critical Strikes Recouped as Life", + [2] = "Limited to 1 Runegraft of Restitching", + }, + ["stats"] = { + ["damage_taken_from_criticals_recouped_as_life_%"] = { + ["fmt"] = "d", + ["max"] = 40, + ["min"] = 40, + }, + }, + ["targetType"] = "Mastery", + ["targetValue"] = "", + }, + ["Runegraft of Resurgence"] = { + ["MaximumConnected"] = 100, + ["MinimumConnected"] = 0, + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/Village/RuneCraftingPassiveBG.png", + ["dn"] = "Runegraft of Resurgence", + ["icon"] = "Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon31.png", + ["id"] = "runegraft_34", + ["isTattoo"] = true, + ["ks"] = false, + ["m"] = true, + ["name"] = "Runegraft Mastery", + ["not"] = false, + ["overrideType"] = "AlternateMastery", + ["sd"] = { + [1] = "Arcane Surge also grants 15% increased Life Regeneration Rate to you", + [2] = "Limited to 1 Runegraft of Resurgence", + }, + ["stats"] = { + ["arcane_surge_on_you_life_regeneration_rate_+%"] = { + ["fmt"] = "d", + ["max"] = 15, + ["min"] = 15, + }, + }, + ["targetType"] = "Mastery", + ["targetValue"] = "", + }, + ["Runegraft of Rotblood"] = { + ["MaximumConnected"] = 100, + ["MinimumConnected"] = 0, + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/Village/RuneCraftingPassiveBG.png", + ["dn"] = "Runegraft of Rotblood", + ["icon"] = "Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon33.png", + ["id"] = "runegraft_29", + ["isTattoo"] = true, + ["ks"] = false, + ["m"] = true, + ["name"] = "Runegraft Mastery", + ["not"] = false, + ["overrideType"] = "AlternateMastery", + ["sd"] = { + [1] = "Enemies Poisoned by you have 10% of Physical Damage they deal converted to Chaos", + [2] = "Limited to 1 Runegraft of Rotblood", + }, + ["stats"] = { + ["enemies_poisoned_by_you_have_physical_damage_%_converted_to_chaos"] = { + ["fmt"] = "d", + ["max"] = 10, + ["min"] = 10, + }, + }, + ["targetType"] = "Mastery", + ["targetValue"] = "", + }, + ["Runegraft of Stability"] = { + ["MaximumConnected"] = 100, + ["MinimumConnected"] = 0, + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/Village/RuneCraftingPassiveBG.png", + ["dn"] = "Runegraft of Stability", + ["icon"] = "Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon2.png", + ["id"] = "runegraft_23", + ["isTattoo"] = true, + ["ks"] = false, + ["m"] = true, + ["name"] = "Runegraft Mastery", + ["not"] = false, + ["overrideType"] = "AlternateMastery", + ["sd"] = { + [1] = "Your Lucky or Unlucky effects are instead Unexciting", + [2] = "Limited to 1 Runegraft of Stability", + }, + ["stats"] = { + ["lucky_or_unlucky_effects_are_instead_unexciting"] = { + ["fmt"] = "d", + ["max"] = 1, + ["min"] = 1, + }, + }, + ["targetType"] = "Mastery", + ["targetValue"] = "", + }, + ["Runegraft of Suffering"] = { + ["MaximumConnected"] = 100, + ["MinimumConnected"] = 0, + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/Village/RuneCraftingPassiveBG.png", + ["dn"] = "Runegraft of Suffering", + ["icon"] = "Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon27.png", + ["id"] = "runegraft_32", + ["isTattoo"] = true, + ["ks"] = false, + ["m"] = true, + ["name"] = "Runegraft Mastery", + ["not"] = false, + ["overrideType"] = "AlternateMastery", + ["sd"] = { + [1] = "50% increased Damage with Damaging Ailments you inflict while you are affected by the same Ailment", + [2] = "Limited to 1 Runegraft of Suffering", + }, + ["stats"] = { + ["damaging_ailment_damage_+%_while_suffering_from_that_ailment"] = { + ["fmt"] = "d", + ["max"] = 50, + ["min"] = 50, + }, + }, + ["targetType"] = "Mastery", + ["targetValue"] = "", + }, + ["Runegraft of Time"] = { + ["MaximumConnected"] = 100, + ["MinimumConnected"] = 0, + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/Village/RuneCraftingPassiveBG.png", + ["dn"] = "Runegraft of Time", + ["icon"] = "Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon19.png", + ["id"] = "runegraft_14", + ["isTattoo"] = true, + ["ks"] = false, + ["m"] = true, + ["name"] = "Runegraft Mastery", + ["not"] = false, + ["overrideType"] = "AlternateMastery", + ["sd"] = { + [1] = "20% chance for Skills to not consume a Cooldown on use", + [2] = "Limited to 1 Runegraft of Time", + }, + ["stats"] = { + ["base_cooldown_refresh_chance_%"] = { + ["fmt"] = "d", + ["max"] = 20, + ["min"] = 20, + }, + }, + ["targetType"] = "Mastery", + ["targetValue"] = "", + }, + ["Runegraft of Treachery"] = { + ["MaximumConnected"] = 100, + ["MinimumConnected"] = 0, + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/Village/RuneCraftingPassiveBG.png", + ["dn"] = "Runegraft of Treachery", + ["icon"] = "Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon20.png", + ["id"] = "runegraft_15", + ["isTattoo"] = true, + ["ks"] = false, + ["m"] = true, + ["name"] = "Runegraft Mastery", + ["not"] = false, + ["overrideType"] = "AlternateMastery", + ["sd"] = { + [1] = "15% increased Reservation Efficiency of Skills", + [2] = "Auras from your Skills which affect Allies also affect Enemies", + [3] = "Limited to 1 Runegraft of Treachery", + }, + ["stats"] = { + ["base_aura_skills_affecting_allies_also_affect_enemies"] = { + ["fmt"] = "d", + ["max"] = 1, + ["min"] = 1, + }, + ["base_reservation_efficiency_+%"] = { + ["fmt"] = "d", + ["max"] = 15, + ["min"] = 15, + }, + }, + ["targetType"] = "Mastery", + ["targetValue"] = "", + }, + ["Runegraft of the Agile"] = { + ["MaximumConnected"] = 100, + ["MinimumConnected"] = 0, + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/Village/RuneCraftingPassiveBG.png", + ["dn"] = "Runegraft of the Agile", + ["icon"] = "Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon32.png", + ["id"] = "runegraft_31", + ["isTattoo"] = true, + ["ks"] = false, + ["m"] = true, + ["name"] = "Runegraft Mastery", + ["not"] = false, + ["overrideType"] = "AlternateMastery", + ["sd"] = { + [1] = "Elusive's Effect on you is increased instead for the first 2 seconds", + [2] = "Limited to 1 Runegraft of the Agile", + }, + ["stats"] = { + ["elusive_ticks_up_instead_for_x_ms"] = { + ["fmt"] = "g", + ["max"] = 2, + ["min"] = 2, + }, + }, + ["targetType"] = "Mastery", + ["targetValue"] = "", + }, + ["Runegraft of the Angler"] = { + ["MaximumConnected"] = 100, + ["MinimumConnected"] = 0, + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/Village/RuneCraftingPassiveBG.png", + ["dn"] = "Runegraft of the Angler", + ["icon"] = "Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon10.png", + ["id"] = "runegraft_25", + ["isTattoo"] = true, + ["ks"] = false, + ["m"] = true, + ["name"] = "Runegraft Mastery", + ["not"] = false, + ["overrideType"] = "AlternateMastery", + ["sd"] = { + [1] = "All hits are Critical Strikes while holding a Fishing Rod", + [2] = "Limited to 1 Runegraft of the Angler", + }, + ["stats"] = { + ["always_crit_while_holding_fishing_rod"] = { + ["fmt"] = "d", + ["max"] = 1, + ["min"] = 1, + }, + }, + ["targetType"] = "Mastery", + ["targetValue"] = "", + }, + ["Runegraft of the Bound"] = { + ["MaximumConnected"] = 100, + ["MinimumConnected"] = 0, + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/Village/RuneCraftingPassiveBG.png", + ["dn"] = "Runegraft of the Bound", + ["icon"] = "Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon3.png", + ["id"] = "runegraft_5", + ["isTattoo"] = true, + ["ks"] = false, + ["m"] = true, + ["name"] = "Runegraft Mastery", + ["not"] = false, + ["overrideType"] = "AlternateMastery", + ["sd"] = { + [1] = "20% reduced bonuses gained from Equipped Boots", + [2] = "20% increased bonuses gained from Equipped Gloves", + [3] = "Limited to 1 Runegraft of the Bound", + }, + ["stats"] = { + ["boots_mod_effect_+%"] = { + ["fmt"] = "d", + ["max"] = 20, + ["min"] = 20, + }, + ["gloves_mod_effect_+%"] = { + ["fmt"] = "d", + ["max"] = 20, + ["min"] = 20, + }, + }, + ["targetType"] = "Mastery", + ["targetValue"] = "", + }, + ["Runegraft of the Combatant"] = { + ["MaximumConnected"] = 100, + ["MinimumConnected"] = 0, + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/Village/RuneCraftingPassiveBG.png", + ["dn"] = "Runegraft of the Combatant", + ["icon"] = "Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon4.png", + ["id"] = "runegraft_3", + ["isTattoo"] = true, + ["ks"] = false, + ["m"] = true, + ["name"] = "Runegraft Mastery", + ["not"] = false, + ["overrideType"] = "AlternateMastery", + ["sd"] = { + [1] = "50% increased Attack Damage against Enemies with a higher percentage of their Life remaining than you", + [2] = "Limited to 1 Runegraft of the Combatant", + }, + ["stats"] = { + ["attack_damage_+%_when_lower_percentage_life_than_target"] = { + ["fmt"] = "d", + ["max"] = 50, + ["min"] = 50, + }, + }, + ["targetType"] = "Mastery", + ["targetValue"] = "", + }, + ["Runegraft of the Fortress"] = { + ["MaximumConnected"] = 100, + ["MinimumConnected"] = 0, + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/Village/RuneCraftingPassiveBG.png", + ["dn"] = "Runegraft of the Fortress", + ["icon"] = "Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon1.png", + ["id"] = "runegraft_2", + ["isTattoo"] = true, + ["ks"] = false, + ["m"] = true, + ["name"] = "Runegraft Mastery", + ["not"] = false, + ["overrideType"] = "AlternateMastery", + ["sd"] = { + [1] = "10% reduced Attributes", + [2] = "40% increased Global Defences", + [3] = "Limited to 1 Runegraft of the Fortress", + }, + ["stats"] = { + ["all_attributes_+%"] = { + ["fmt"] = "d", + ["max"] = 10, + ["min"] = 10, + }, + ["global_defences_+%"] = { + ["fmt"] = "d", + ["max"] = 40, + ["min"] = 40, + }, + }, + ["targetType"] = "Mastery", + ["targetValue"] = "", + }, + ["Runegraft of the Gauche"] = { + ["MaximumConnected"] = 100, + ["MinimumConnected"] = 0, + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/Village/RuneCraftingPassiveBG.png", + ["dn"] = "Runegraft of the Gauche", + ["icon"] = "Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon16.png", + ["id"] = "runegraft_11", + ["isTattoo"] = true, + ["ks"] = false, + ["m"] = true, + ["name"] = "Runegraft Mastery", + ["not"] = false, + ["overrideType"] = "AlternateMastery", + ["sd"] = { + [1] = "Hit Damage with your Off Hand treats Enemy Monster", + [2] = "Elemental Resistance values as inverted", + [3] = "Limited to 1 Runegraft of the Gauche", + }, + ["stats"] = { + ["off_hand_treat_enemy_resistances_as_negated_on_elemental_damage_hit"] = { + ["fmt"] = "d", + ["max"] = 1, + ["min"] = 1, + }, + }, + ["targetType"] = "Mastery", + ["targetValue"] = "", + }, + ["Runegraft of the Imbued"] = { + ["MaximumConnected"] = 100, + ["MinimumConnected"] = 0, + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/Village/RuneCraftingPassiveBG.png", + ["dn"] = "Runegraft of the Imbued", + ["icon"] = "Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon30.png", + ["id"] = "runegraft_30", + ["isTattoo"] = true, + ["ks"] = false, + ["m"] = true, + ["name"] = "Runegraft Mastery", + ["not"] = false, + ["overrideType"] = "AlternateMastery", + ["sd"] = { + [1] = "Tinctures applied to you have 30% increased Effect while affected by no Flasks", + [2] = "Limited to 1 Runegraft of the Imbued", + }, + ["stats"] = { + ["tincture_effect_+%_while_not_using_flask"] = { + ["fmt"] = "d", + ["max"] = 30, + ["min"] = 30, + }, + }, + ["targetType"] = "Mastery", + ["targetValue"] = "", + }, + ["Runegraft of the Jeweller"] = { + ["MaximumConnected"] = 100, + ["MinimumConnected"] = 0, + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/Village/RuneCraftingPassiveBG.png", + ["dn"] = "Runegraft of the Jeweller", + ["icon"] = "Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon8.png", + ["id"] = "runegraft_22", + ["isTattoo"] = true, + ["ks"] = false, + ["m"] = true, + ["name"] = "Runegraft Mastery", + ["not"] = false, + ["overrideType"] = "AlternateMastery", + ["sd"] = { + [1] = "10% increased Damage for each unlinked Socket in Equipped Two Handed Weapon", + [2] = "Limited to 1 Runegraft of the Jeweller", + }, + ["stats"] = { + ["two_handed_attack_damage_+%_per_unlinked_socket_on_weapon"] = { + ["fmt"] = "d", + ["max"] = 10, + ["min"] = 10, + }, + }, + ["targetType"] = "Mastery", + ["targetValue"] = "", + }, + ["Runegraft of the Novamark"] = { + ["MaximumConnected"] = 100, + ["MinimumConnected"] = 0, + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/Village/RuneCraftingPassiveBG.png", + ["dn"] = "Runegraft of the Novamark", + ["icon"] = "Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon25.png", + ["id"] = "runegraft_20", + ["isTattoo"] = true, + ["ks"] = false, + ["m"] = true, + ["name"] = "Runegraft Mastery", + ["not"] = false, + ["overrideType"] = "AlternateMastery", + ["sd"] = { + [1] = "Nova Spells Cast at a Marked target instead of around you if possible", + [2] = "Limited to 1 Runegraft of the Novamark", + }, + ["stats"] = { + ["nova_spells_cast_at_marked_target"] = { + ["fmt"] = "d", + ["max"] = 1, + ["min"] = 1, + }, + }, + ["targetType"] = "Mastery", + ["targetValue"] = "", + }, + ["Runegraft of the River"] = { + ["MaximumConnected"] = 100, + ["MinimumConnected"] = 0, + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/Village/RuneCraftingPassiveBG.png", + ["dn"] = "Runegraft of the River", + ["icon"] = "Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon5.png", + ["id"] = "runegraft_1", + ["isTattoo"] = true, + ["ks"] = false, + ["m"] = true, + ["name"] = "Runegraft Mastery", + ["not"] = false, + ["overrideType"] = "AlternateMastery", + ["sd"] = { + [1] = "20% chance on reaching Low Life to recover to Full Life", + [2] = "Limited to 1 Runegraft of the River", + }, + ["stats"] = { + ["chance_%_to_return_to_full_life_on_reaching_low_life"] = { + ["fmt"] = "d", + ["max"] = 20, + ["min"] = 20, + }, + }, + ["targetType"] = "Mastery", + ["targetValue"] = "", + }, + ["Runegraft of the Sinistral"] = { + ["MaximumConnected"] = 100, + ["MinimumConnected"] = 0, + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/Village/RuneCraftingPassiveBG.png", + ["dn"] = "Runegraft of the Sinistral", + ["icon"] = "Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon6.png", + ["id"] = "runegraft_4", + ["isTattoo"] = true, + ["ks"] = false, + ["m"] = true, + ["name"] = "Runegraft Mastery", + ["not"] = false, + ["overrideType"] = "AlternateMastery", + ["sd"] = { + [1] = "10% more Attack speed with Offhand", + [2] = "Limited to 1 Runegraft of the Sinistral", + }, + ["stats"] = { + ["runegraft_offhand_attack_speed_+%_final"] = { + ["fmt"] = "d", + ["max"] = 10, + ["min"] = 10, + }, + }, + ["targetType"] = "Mastery", + ["targetValue"] = "", + }, + ["Runegraft of the Soulwick"] = { + ["MaximumConnected"] = 100, + ["MinimumConnected"] = 0, + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/Village/RuneCraftingPassiveBG.png", + ["dn"] = "Runegraft of the Soulwick", + ["icon"] = "Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon12.png", + ["id"] = "runegraft_7", + ["isTattoo"] = true, + ["ks"] = false, + ["m"] = true, + ["name"] = "Runegraft Mastery", + ["not"] = false, + ["overrideType"] = "AlternateMastery", + ["sd"] = { + [1] = "Gain 1 Vaal Soul per second", + [2] = "Limited to 1 Runegraft of the Soulwick", + }, + ["stats"] = { + ["vaal_souls_gained_per_minute"] = { + ["fmt"] = "g", + ["max"] = 1, + ["min"] = 1, + }, + }, + ["targetType"] = "Mastery", + ["targetValue"] = "", + }, + ["Runegraft of the Spellbound"] = { + ["MaximumConnected"] = 100, + ["MinimumConnected"] = 0, + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/Village/RuneCraftingPassiveBG.png", + ["dn"] = "Runegraft of the Spellbound", + ["icon"] = "Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon26.png", + ["id"] = "runegraft_33", + ["isTattoo"] = true, + ["ks"] = false, + ["m"] = true, + ["name"] = "Runegraft Mastery", + ["not"] = false, + ["overrideType"] = "AlternateMastery", + ["sd"] = { + [1] = "Spells have Added Spell Damage equal to 30% of Physical Damage of", + [2] = "your Equipped Two handed Weapon", + [3] = "Limited to 1 Runegraft of the Spellbound", + }, + ["stats"] = { + ["gain_%_of_two_hand_weapon_physical_damage_as_added_spell_damage"] = { + ["fmt"] = "d", + ["max"] = 30, + ["min"] = 30, + }, + }, + ["targetType"] = "Mastery", + ["targetValue"] = "", + }, + ["Runegraft of the Warp"] = { + ["MaximumConnected"] = 100, + ["MinimumConnected"] = 0, + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/Village/RuneCraftingPassiveBG.png", + ["dn"] = "Runegraft of the Warp", + ["icon"] = "Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon11.png", + ["id"] = "runegraft_6", + ["isTattoo"] = true, + ["ks"] = false, + ["m"] = true, + ["name"] = "Runegraft Mastery", + ["not"] = false, + ["overrideType"] = "AlternateMastery", + ["sd"] = { + [1] = "Buffs on you expire 30% slower", + [2] = "Debuffs on you expire 30% faster", + [3] = "Limited to 1 Runegraft of the Warp", + }, + ["stats"] = { + ["buff_time_passed_+%_only_buff_category"] = { + ["fmt"] = "d", + ["max"] = 30, + ["min"] = 30, + }, + ["debuff_time_passed_+%"] = { + ["fmt"] = "d", + ["max"] = 30, + ["min"] = 30, + }, + }, + ["targetType"] = "Mastery", + ["targetValue"] = "", + }, + ["Runegraft of the Witchmark"] = { + ["MaximumConnected"] = 100, + ["MinimumConnected"] = 0, + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/Village/RuneCraftingPassiveBG.png", + ["dn"] = "Runegraft of the Witchmark", + ["icon"] = "Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon24.png", + ["id"] = "runegraft_19", + ["isTattoo"] = true, + ["ks"] = false, + ["m"] = true, + ["name"] = "Runegraft Mastery", + ["not"] = false, + ["overrideType"] = "AlternateMastery", + ["sd"] = { + [1] = "Spells deal added Chaos Damage equal to 2% of your maximum Life", + [2] = "Spells Cost +8% of Life", + [3] = "Limited to 1 Runegraft of the Witchmark", + }, + ["stats"] = { + ["additional_chaos_damage_to_spells_equal_to_%_maximum_life"] = { + ["fmt"] = "d", + ["max"] = 2, + ["min"] = 2, + }, + ["spell_base_life_cost_%"] = { + ["fmt"] = "d", + ["max"] = 8, + ["min"] = 8, + }, + }, + ["targetType"] = "Mastery", + ["targetValue"] = "", + }, + ["Saboteur"] = { + ["MaximumConnected"] = 100, + ["MinimumConnected"] = 0, + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", + ["dn"] = "Saboteur", + ["icon"] = "Art/2DArt/SkillIcons/passives/Ascendants/Saboteur.png", + ["id"] = "AscendancyAscendant48", + ["isTattoo"] = true, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["overrideType"] = "AscendancyTattooScion", + ["sd"] = { + [1] = "30% increased Area of Effect", + [2] = "15% increased Cooldown Recovery Rate", + [3] = "Hits have 20% chance to deal 50% more Area Damage", + [4] = "25% chance to Blind Enemies on Hit", + [5] = "Limited to 1 Ascendancy Tattoo", + }, + ["stats"] = { + ["%_chance_to_deal_150%_area_damage_+%_final"] = { + ["fmt"] = "d", + ["index"] = 4, + ["max"] = 20, + ["min"] = 20, + ["statOrder"] = 9598, + }, + ["base_cooldown_speed_+%"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 15, + ["min"] = 15, + ["statOrder"] = 5005, + }, + ["base_skill_area_of_effect_+%"] = { + ["fmt"] = "d", + ["index"] = 3, + ["max"] = 30, + ["min"] = 30, + ["statOrder"] = 1880, + }, + ["global_chance_to_blind_on_hit_%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 25, + ["min"] = 25, + ["statOrder"] = 10907, + }, + }, + ["targetType"] = "Ascendancy Notable", + ["targetValue"] = "", + }, + ["Sanctuary"] = { + ["MaximumConnected"] = 100, + ["MinimumConnected"] = 0, + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", + ["dn"] = "Sanctuary", + ["icon"] = "Art/2DArt/SkillIcons/passives/Inquistitor/Sanctify.png", + ["id"] = "AscendancyInquisitor11", + ["isTattoo"] = true, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["overrideType"] = "AscendancyTattooTemplar", + ["sd"] = { + [1] = "Consecrated Ground you create applies 15% increased Damage taken to Enemies", + [2] = "You have Consecrated Ground around you while stationary", + [3] = "Limited to 1 Ascendancy Tattoo", + }, + ["stats"] = { + ["consecrated_ground_enemy_damage_taken_+%"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 15, + ["min"] = 15, + ["statOrder"] = 5848, + }, + ["consecrated_ground_while_stationary_radius"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 18, + ["min"] = 18, + ["statOrder"] = 5856, + }, + }, + ["targetType"] = "Ascendancy Notable", + ["targetValue"] = "", + }, + ["Sanctuary of Thought"] = { + ["MaximumConnected"] = 100, + ["MinimumConnected"] = 0, + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", + ["dn"] = "Sanctuary of Thought", + ["icon"] = "Art/2DArt/SkillIcons/passives/Hierophant/MindOverBeing.png", + ["id"] = "AscendancyHeirophant8", + ["isTattoo"] = true, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["overrideType"] = "AscendancyTattooTemplar", + ["sd"] = { + [1] = "Gain 20% of Maximum Mana as Extra Maximum Energy Shield", + [2] = "1% increased Area of Effect per 50 Unreserved Maximum Mana, up to 100%", + [3] = "Regenerate 1% of Mana per second", + [4] = "Limited to 1 Ascendancy Tattoo", + }, + ["stats"] = { + ["hierophant_area_of_effect_+%_per_50_unreserved_mana_up_to_100%"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 7141, + }, + ["mana_%_to_add_as_energy_shield"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 20, + ["min"] = 20, + ["statOrder"] = 2175, + }, + ["mana_regeneration_rate_per_minute_%"] = { + ["fmt"] = "g", + ["index"] = 3, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 10868, + }, + }, + ["targetType"] = "Ascendancy Notable", + ["targetValue"] = "", + }, + ["Seasoned Hunter"] = { + ["MaximumConnected"] = 100, + ["MinimumConnected"] = 0, + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", + ["dn"] = "Seasoned Hunter", + ["icon"] = "Art/2DArt/SkillIcons/passives/Warden/TinctureRangedNotable.png", + ["id"] = "AscendancyRaider19", + ["isTattoo"] = true, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["overrideType"] = "AscendancyTattooRanger", + ["sd"] = { + [1] = "Tincture Effects also apply to Ranged Weapons", + [2] = "Limited to 1 Ascendancy Tattoo", + }, + ["stats"] = { + ["tinctures_can_apply_to_ranged_weapons"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 10382, + }, + }, + ["targetType"] = "Ascendancy Notable", + ["targetValue"] = "", + }, + ["Shadowed Blood"] = { + ["MaximumConnected"] = 100, + ["MinimumConnected"] = 0, + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", + ["dn"] = "Shadowed Blood", + ["icon"] = "Art/2DArt/SkillIcons/passives/LifeGainOnHitNotable.png", + ["id"] = "AscendancyAssassin16", + ["isTattoo"] = true, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["overrideType"] = "AscendancyTattooShadow", + ["sd"] = { + [1] = "40% of Physical Damage taken Recouped as Life", + [2] = "Unaffected by Damaging Ailments", + [3] = "Limited to 1 Ascendancy Tattoo", + }, + ["stats"] = { + ["physical_damage_taken_recouped_as_life_%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 40, + ["min"] = 40, + ["statOrder"] = 9664, + }, + ["unaffected_by_damaging_ailments"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 10467, + }, + }, + ["targetType"] = "Ascendancy Notable", + ["targetValue"] = "", + }, + ["Shaper of Flames"] = { + ["MaximumConnected"] = 100, + ["MinimumConnected"] = 0, + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", + ["dn"] = "Shaper of Flames", + ["icon"] = "Art/2DArt/SkillIcons/passives/Elementalist/IgniteSpecialisation.png", + ["id"] = "AscendancyElementalist18", + ["isTattoo"] = true, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["overrideType"] = "AscendancyTattooWitch", + ["sd"] = { + [1] = "Hits always Ignite", + [2] = "All Damage can Ignite", + [3] = "Enemies Ignited by you have 40% of Physical Damage they deal converted to Fire", + [4] = "Limited to 1 Ascendancy Tattoo", + }, + ["stats"] = { + ["all_damage_can_ignite"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 4625, + }, + ["always_ignite"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 1852, + }, + ["enemies_ignited_by_you_have_physical_damage_%_converted_to_fire"] = { + ["fmt"] = "d", + ["index"] = 3, + ["max"] = 40, + ["min"] = 40, + ["statOrder"] = 6384, + }, + }, + ["targetType"] = "Ascendancy Notable", + ["targetValue"] = "", + }, + ["Shaper of Storms"] = { + ["MaximumConnected"] = 100, + ["MinimumConnected"] = 0, + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", + ["dn"] = "Shaper of Storms", + ["icon"] = "Art/2DArt/SkillIcons/passives/Elementalist/ShockSpecialisation.png", + ["id"] = "AscendancyElementalist19", + ["isTattoo"] = true, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["overrideType"] = "AscendancyTattooWitch", + ["sd"] = { + [1] = "Hits always Shock", + [2] = "Shocks from your Hits always increase Damage taken by at least 25%", + [3] = "All Damage can Shock", + [4] = "Limited to 1 Ascendancy Tattoo", + }, + ["stats"] = { + ["all_damage_can_shock"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 4627, + }, + ["always_shock"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 1853, + }, + ["shock_minimum_damage_taken_increase_%"] = { + ["fmt"] = "d", + ["index"] = 3, + ["max"] = 25, + ["min"] = 25, + ["statOrder"] = 4442, + }, + }, + ["targetType"] = "Ascendancy Notable", + ["targetValue"] = "", + }, + ["Shaper of Winter"] = { + ["MaximumConnected"] = 100, + ["MinimumConnected"] = 0, + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", + ["dn"] = "Shaper of Winter", + ["icon"] = "Art/2DArt/SkillIcons/passives/Elementalist/ChillSpecialisation.png", + ["id"] = "AscendancyElementalist20", + ["isTattoo"] = true, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["overrideType"] = "AscendancyTattooWitch", + ["sd"] = { + [1] = "All Damage with Hits can Chill", + [2] = "Your Chills can reduce Action Speed by up to a maximum of 40%", + [3] = "Enemies Chilled by your Hits lessen their Damage dealt by half of Chill Effect", + [4] = "Limited to 1 Ascendancy Tattoo", + }, + ["stats"] = { + ["all_damage_can_chill"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 2860, + }, + ["elementalist_chill_maximum_magnitude_override"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 40, + ["min"] = 40, + ["statOrder"] = 6346, + }, + ["enemies_chilled_by_hits_deal_damage_lessened_by_chill_effect"] = { + ["fmt"] = "d", + ["index"] = 3, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 6369, + }, + }, + ["targetType"] = "Ascendancy Notable", + ["targetValue"] = "", + }, + ["Shrapnel Specialist"] = { + ["MaximumConnected"] = 100, + ["MinimumConnected"] = 0, + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", + ["dn"] = "Shrapnel Specialist", + ["icon"] = "Art/2DArt/SkillIcons/passives/Saboteur/ShrapnelSpecialist.png", + ["id"] = "AscendancySaboteur18", + ["isTattoo"] = true, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["overrideType"] = "AscendancyTattooShadow", + ["sd"] = { + [1] = "Projectiles have 50% chance to Return to you", + [2] = "Projectiles are fired in random directions", + [3] = "Limited to 1 Ascendancy Tattoo", + }, + ["stats"] = { + ["projectile_return_%_chance"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 50, + ["min"] = 50, + ["statOrder"] = 2823, + }, + ["random_projectile_direction"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 9828, + }, + }, + ["targetType"] = "Ascendancy Notable", + ["targetValue"] = "", + }, + ["Sign of Purpose"] = { + ["MaximumConnected"] = 100, + ["MinimumConnected"] = 0, + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", + ["dn"] = "Sign of Purpose", + ["icon"] = "Art/2DArt/SkillIcons/passives/Hierophant/SignOfPurpose.png", + ["id"] = "AscendancyHeirophant16", + ["isTattoo"] = true, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["overrideType"] = "AscendancyTattooTemplar", + ["sd"] = { + [1] = "Brands have 100% more Activation Frequency if 75% of Attached Duration expired", + [2] = "Brand Recall has 100% increased Cooldown Recovery Rate", + [3] = "Limited to 1 Ascendancy Tattoo", + }, + ["stats"] = { + ["brand_activation_rate_+%_final_during_last_20%_of_active_duration"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 100, + ["min"] = 100, + ["statOrder"] = 5266, + }, + ["sigil_recall_cooldown_speed_+%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 100, + ["min"] = 100, + ["statOrder"] = 10040, + }, + }, + ["targetType"] = "Ascendancy Notable", + ["targetValue"] = "", + }, + ["Sione, Sun's Roar"] = { + ["MaximumConnected"] = 100, + ["MinimumConnected"] = 0, + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", + ["dn"] = "Sione, Sun's Roar", + ["icon"] = "Art/2DArt/SkillIcons/passives/Chieftain/ArohunguiMoonsPresenceWarcry.png", + ["id"] = "AscendancyChieftan7", + ["isTattoo"] = true, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["overrideType"] = "AscendancyTattooMarauder", + ["sd"] = { + [1] = "30% increased Warcry Buff Effect", + [2] = "Warcries have infinite Power", + [3] = "Limited to 1 Ascendancy Tattoo", + }, + ["stats"] = { + ["warcries_have_infinite_power"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 10570, + }, + ["warcry_buff_effect_+%"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 30, + ["min"] = 30, + ["statOrder"] = 10567, + }, + }, + ["targetType"] = "Ascendancy Notable", + ["targetValue"] = "", + }, + ["Slayer"] = { + ["MaximumConnected"] = 100, + ["MinimumConnected"] = 0, + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", + ["dn"] = "Slayer", + ["icon"] = "Art/2DArt/SkillIcons/passives/Ascendants/Slayer.png", + ["id"] = "AscendancyAscendant40", + ["isTattoo"] = true, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["overrideType"] = "AscendancyTattooScion", + ["sd"] = { + [1] = "Culling Strike", + [2] = "Life Leech effects are not removed when Unreserved Life is Filled", + [3] = "30% increased Area of Effect if you've Killed Recently", + [4] = "Cannot take Reflected Physical Damage", + [5] = "Limited to 1 Ascendancy Tattoo", + }, + ["stats"] = { + ["cannot_take_reflected_physical_damage"] = { + ["fmt"] = "d", + ["index"] = 4, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 5447, + }, + ["kill_enemy_on_hit_if_under_10%_life"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 2039, + }, + ["life_leech_does_not_stop_at_full_life"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 3211, + }, + ["skill_area_of_effect_+%_if_enemy_killed_recently"] = { + ["fmt"] = "d", + ["index"] = 3, + ["max"] = 30, + ["min"] = 30, + ["statOrder"] = 4219, + }, + }, + ["targetType"] = "Ascendancy Notable", + ["targetValue"] = "", + }, + ["Solipsism"] = { + ["MaximumConnected"] = 100, + ["MinimumConnected"] = 0, + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", + ["dn"] = "Solipsism", + ["icon"] = "Art/2DArt/SkillIcons/passives/Resilience.png", + ["id"] = "resilience_keystone2851_", + ["isTattoo"] = true, + ["ks"] = true, + ["m"] = false, + ["not"] = false, + ["overrideType"] = "KeystoneTattoo", + ["sd"] = { + [1] = "Intelligence provides no inherent bonus to Energy Shield", + [2] = "2% reduced Duration of Elemental Ailments on you per 15 Intelligence", [3] = "Limited to 1 Keystone Tattoo", }, ["stats"] = { - ["keystone_runebinder"] = { + ["keystone_solipsism"] = { ["fmt"] = "d", ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 10960, + ["statOrder"] = 10965, }, }, ["targetType"] = "Keystone", ["targetValue"] = "", }, - ["Runegraft of Bellows"] = { + ["Soul Drinker"] = { ["MaximumConnected"] = 100, ["MinimumConnected"] = 0, - ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/Village/RuneCraftingPassiveBG.png", - ["dn"] = "Runegraft of Bellows", - ["icon"] = "Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon13.png", - ["id"] = "runegraft_8", + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", + ["dn"] = "Soul Drinker", + ["icon"] = "Art/2DArt/SkillIcons/passives/Trickster/SoulThiefTrickster.png", + ["id"] = "AscendancySpecialEldritch6", ["isTattoo"] = true, ["ks"] = false, - ["legacy"] = false, - ["m"] = true, - ["name"] = "Runegraft Mastery", - ["not"] = false, - ["overrideType"] = "AlternateMastery", + ["m"] = false, + ["not"] = true, + ["overrideType"] = "AscendancyTattooShadow", ["sd"] = { - [1] = "100% increased Warcry Speed if you have not Warcried Recently", - [2] = "Limited to 1 Runegraft of Bellows", + [1] = "2% of Damage Leeched as Energy Shield", + [2] = "Energy Shield Leech effects are not removed when Energy Shield is Filled", + [3] = "Limited to 1 Ascendancy Tattoo", }, ["stats"] = { - ["warcry_speed_+%_if_not_warcried_recently"] = { + ["energy_shield_leech_does_not_stop_on_full_energy_shield"] = { ["fmt"] = "d", - ["max"] = 100, - ["min"] = 100, + ["index"] = 1, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 6436, + }, + ["energy_shield_leech_from_any_damage_permyriad"] = { + ["fmt"] = "g", + ["index"] = 2, + ["max"] = 2, + ["min"] = 2, + ["statOrder"] = 1721, }, }, - ["targetType"] = "Mastery", + ["targetType"] = "Ascendancy Notable", ["targetValue"] = "", }, - ["Runegraft of Blasphemy"] = { + ["Spellbreaker"] = { ["MaximumConnected"] = 100, ["MinimumConnected"] = 0, - ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/Village/RuneCraftingPassiveBG.png", - ["dn"] = "Runegraft of Blasphemy", - ["icon"] = "Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon15.png", - ["id"] = "runegraft_10", + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", + ["dn"] = "Spellbreaker", + ["icon"] = "Art/2DArt/SkillIcons/passives/Trickster/SupressionEnergyShieldTrickster.png", + ["id"] = "AscendancyTrickster10", ["isTattoo"] = true, ["ks"] = false, - ["legacy"] = false, - ["m"] = true, - ["name"] = "Runegraft Mastery", - ["not"] = false, - ["overrideType"] = "AlternateMastery", + ["m"] = false, + ["not"] = true, + ["overrideType"] = "AscendancyTattooShadow", ["sd"] = { - [1] = "30% chance to Curse non-Cursed Enemies with a random Hex on Hit", - [2] = "Limited to 1 Runegraft of Blasphemy", + [1] = "Prevent +15% of Suppressed Spell Damage while on Full Energy Shield", + [2] = "50% chance for Energy Shield Recharge to start when you Suppress Spell Damage", + [3] = "Limited to 1 Ascendancy Tattoo", }, ["stats"] = { - ["random_curse_on_hit_%_against_uncursed_enemies"] = { + ["energy_shield_recharges_on_suppress_%"] = { ["fmt"] = "d", - ["max"] = 30, - ["min"] = 30, + ["index"] = 2, + ["max"] = 50, + ["min"] = 50, + ["statOrder"] = 3423, + }, + ["spell_damage_%_suppressed_while_on_full_energy_shield"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 15, + ["min"] = 15, + ["statOrder"] = 1146, }, }, - ["targetType"] = "Mastery", + ["targetType"] = "Ascendancy Notable", ["targetValue"] = "", }, - ["Runegraft of Connection"] = { + ["Supreme Ego"] = { ["MaximumConnected"] = 100, ["MinimumConnected"] = 0, - ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/Village/RuneCraftingPassiveBG.png", - ["dn"] = "Runegraft of Connection", - ["icon"] = "Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon29.png", - ["id"] = "runegraft_35", + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", + ["dn"] = "Supreme Ego", + ["icon"] = "Art/2DArt/SkillIcons/passives/SupremeEgo.png", + ["id"] = "supreme_ego_keystone2696", ["isTattoo"] = true, - ["ks"] = false, - ["m"] = true, - ["name"] = "Runegraft Mastery", + ["ks"] = true, + ["m"] = false, ["not"] = false, - ["overrideType"] = "AlternateMastery", + ["overrideType"] = "KeystoneTattoo", ["sd"] = { - [1] = "Link Skills have 50% increased range", - [2] = "Limited to 1 Runegraft of Connection", + [1] = "Auras from your Skills can only affect you", + [2] = "Aura Skills have 1% more Aura Effect per 2% of maximum Mana they Reserve", + [3] = "40% more Mana Reservation of Aura Skills", + [4] = "Limited to 1 Keystone Tattoo", }, ["stats"] = { - ["link_skill_range_+%"] = { + ["keystone_supreme_ego"] = { ["fmt"] = "d", - ["max"] = 50, - ["min"] = 50, + ["index"] = 1, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 10968, }, }, - ["targetType"] = "Mastery", + ["targetType"] = "Keystone", ["targetValue"] = "", }, - ["Runegraft of Consecration"] = { + ["Swift Killer"] = { ["MaximumConnected"] = 100, ["MinimumConnected"] = 0, - ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/Village/RuneCraftingPassiveBG.png", - ["dn"] = "Runegraft of Consecration", - ["icon"] = "Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon36.png", - ["id"] = "runegraft_26", + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", + ["dn"] = "Swift Killer", + ["icon"] = "Art/2DArt/SkillIcons/passives/Trickster/UncontrolledVigour.png", + ["id"] = "AscendancyTrickster2", ["isTattoo"] = true, ["ks"] = false, - ["m"] = true, - ["name"] = "Runegraft Mastery", - ["not"] = false, - ["overrideType"] = "AlternateMastery", + ["m"] = false, + ["not"] = true, + ["overrideType"] = "AscendancyTattooShadow", ["sd"] = { - [1] = "Consecrated Ground you create grants 30% increased Mana Regeneration", - [2] = "Rate to you and Allies", - [3] = "Limited to 1 Runegraft of Consecration", + [1] = "200% increased Charge Duration", + [2] = "+2 to Maximum Frenzy Charges", + [3] = "Limited to 1 Ascendancy Tattoo", }, ["stats"] = { - ["your_consecrated_ground_grants_mana_regeneration_rate_+%"] = { + ["base_charge_duration_+%"] = { ["fmt"] = "d", - ["max"] = 30, - ["min"] = 30, + ["index"] = 2, + ["max"] = 200, + ["min"] = 200, + ["statOrder"] = 5003, + }, + ["max_frenzy_charges"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 2, + ["min"] = 2, + ["statOrder"] = 10871, }, }, - ["targetType"] = "Mastery", + ["targetType"] = "Ascendancy Notable", ["targetValue"] = "", }, - ["Runegraft of Fury"] = { + ["Tasalio, Cleansing Water"] = { ["MaximumConnected"] = 100, ["MinimumConnected"] = 0, - ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/Village/RuneCraftingPassiveBG.png", - ["dn"] = "Runegraft of Fury", - ["icon"] = "Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon34.png", - ["id"] = "runegraft_27", + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", + ["dn"] = "Tasalio, Cleansing Water", + ["icon"] = "Art/2DArt/SkillIcons/passives/Chieftain/TasalioCleansingWater.png", + ["id"] = "AscendancyChieftan10", ["isTattoo"] = true, ["ks"] = false, - ["m"] = true, - ["name"] = "Runegraft Mastery", - ["not"] = false, - ["overrideType"] = "AlternateMastery", + ["m"] = false, + ["not"] = true, + ["overrideType"] = "AscendancyTattooMarauder", ["sd"] = { - [1] = "Gain 3 Rage when you use a Life Flask", - [2] = "Limited to 1 Runegraft of Fury", + [1] = "Modifiers to Fire Resistance also apply to Cold and Lightning Resistances at 50% of their Value", + [2] = "Unaffected by Ignite", + [3] = "Limited to 1 Ascendancy Tattoo", }, ["stats"] = { - ["gain_x_rage_when_you_use_a_life_flask"] = { + ["modifiers_to_fire_resistance_also_apply_to_cold_lightning_resistance_at_%_value"] = { ["fmt"] = "d", - ["max"] = 3, - ["min"] = 3, + ["index"] = 1, + ["max"] = 50, + ["min"] = 50, + ["statOrder"] = 9385, + }, + ["unaffected_by_ignite"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 10474, }, }, - ["targetType"] = "Mastery", + ["targetType"] = "Ascendancy Notable", ["targetValue"] = "", }, - ["Runegraft of Gemcraft"] = { - ["MaximumConnected"] = 100, + ["Tattoo of the Arohongui Makanga"] = { + ["MaximumConnected"] = 1, ["MinimumConnected"] = 0, - ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/Village/RuneCraftingPassiveBG.png", - ["dn"] = "Runegraft of Gemcraft", - ["icon"] = "Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon14.png", - ["id"] = "runegraft_9", + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/ArohonguiTribePassiveBG.png", + ["dn"] = "Tattoo of the Arohongui Makanga", + ["icon"] = "Art/2DArt/SkillIcons/passives/ColdResistNode.png", + ["id"] = "Arohongui7", ["isTattoo"] = true, ["ks"] = false, - ["legacy"] = false, - ["m"] = true, - ["name"] = "Runegraft Mastery", + ["m"] = false, ["not"] = false, - ["overrideType"] = "AlternateMastery", + ["overrideType"] = "ArohonguiTattoo", + ["reminderText"] = { + [1] = "Requires that no more than 1 adjacent Passive Skills to be allocated", + }, ["sd"] = { - [1] = "+1 to Level of all non-Exceptional Support Gems", - [2] = "Limited to 1 Runegraft of Gemcraft", + [1] = "+1% to maximum Cold Resistance", }, ["stats"] = { - ["non_exceptional_support_gem_level_+"] = { + ["base_maximum_cold_damage_resistance_%"] = { ["fmt"] = "d", ["max"] = 1, ["min"] = 1, }, }, - ["targetType"] = "Mastery", + ["targetType"] = "Small Dexterity", ["targetValue"] = "", }, - ["Runegraft of Loyalty"] = { + ["Tattoo of the Arohongui Moonwarden"] = { ["MaximumConnected"] = 100, ["MinimumConnected"] = 0, - ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/Village/RuneCraftingPassiveBG.png", - ["dn"] = "Runegraft of Loyalty", - ["icon"] = "Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon23.png", - ["id"] = "runegraft_18", + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/ArohonguiTribePassiveBG.png", + ["dn"] = "Tattoo of the Arohongui Moonwarden", + ["icon"] = "Art/2DArt/SkillIcons/passives/ColdResistNode.png", + ["id"] = "Arohongui1", ["isTattoo"] = true, ["ks"] = false, - ["legacy"] = false, - ["m"] = true, - ["name"] = "Runegraft Mastery", + ["m"] = false, ["not"] = false, - ["overrideType"] = "AlternateMastery", + ["overrideType"] = "ArohonguiTattoo", ["sd"] = { - [1] = "40% chance for Elemental Ailments inflicted on you to", - [2] = "be inflicted on a nearby Minion instead", - [3] = "Limited to 1 Runegraft of Loyalty", + [1] = "+6% to Cold Resistance", }, ["stats"] = { - ["chance_%_elemental_ailments_redirected_to_nearby_minion"] = { + ["base_cold_damage_resistance_%"] = { ["fmt"] = "d", - ["max"] = 40, - ["min"] = 40, + ["max"] = 6, + ["min"] = 6, }, }, - ["targetType"] = "Mastery", + ["targetType"] = "Small Dexterity", ["targetValue"] = "", }, - ["Runegraft of Quaffing"] = { + ["Tattoo of the Arohongui Scout"] = { ["MaximumConnected"] = 100, ["MinimumConnected"] = 0, - ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/Village/RuneCraftingPassiveBG.png", - ["dn"] = "Runegraft of Quaffing", - ["icon"] = "Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon21.png", - ["id"] = "runegraft_16", + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/ArohonguiTribePassiveBG.png", + ["dn"] = "Tattoo of the Arohongui Scout", + ["icon"] = "Art/2DArt/SkillIcons/passives/ColdResistNode.png", + ["id"] = "Arohongui2", ["isTattoo"] = true, ["ks"] = false, - ["legacy"] = false, - ["m"] = true, - ["name"] = "Runegraft Mastery", + ["m"] = false, ["not"] = false, - ["overrideType"] = "AlternateMastery", + ["overrideType"] = "ArohonguiTattoo", ["sd"] = { - [1] = "25% reduced Mana Recovery from Flasks", - [2] = "Non-instant Mana Recovery from Flasks is also Recovered as Life", - [3] = "Limited to 1 Runegraft of Quaffing", + [1] = "10% chance to Avoid being Chilled", + [2] = "10% chance to Avoid being Frozen", }, ["stats"] = { - ["flask_mana_to_recover_+%"] = { + ["base_avoid_chill_%"] = { ["fmt"] = "d", - ["max"] = 25, - ["min"] = 25, + ["max"] = 10, + ["min"] = 10, }, - ["non_instant_mana_recovery_from_flasks_also_recovers_life"] = { + ["base_avoid_freeze_%"] = { ["fmt"] = "d", - ["max"] = 1, - ["min"] = 1, + ["max"] = 10, + ["min"] = 10, }, }, - ["targetType"] = "Mastery", + ["targetType"] = "Small Dexterity", ["targetValue"] = "", }, - ["Runegraft of Rallying"] = { + ["Tattoo of the Arohongui Shaman"] = { ["MaximumConnected"] = 100, ["MinimumConnected"] = 0, - ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/Village/RuneCraftingPassiveBG.png", - ["dn"] = "Runegraft of Rallying", - ["icon"] = "Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon37.png", - ["id"] = "runegraft_28", + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/ArohonguiTribePassiveBG.png", + ["dn"] = "Tattoo of the Arohongui Shaman", + ["icon"] = "Art/2DArt/SkillIcons/passives/HeraldReservationNode.png", + ["id"] = "Arohongui5", ["isTattoo"] = true, ["ks"] = false, - ["m"] = true, - ["name"] = "Runegraft Mastery", + ["m"] = false, ["not"] = false, - ["overrideType"] = "AlternateMastery", + ["overrideType"] = "ArohonguiTattoo", ["sd"] = { - [1] = "Gain 1 Fortification per 5 Valour consumed to place a Banner", - [2] = "Limited to 1 Runegraft of Rallying", + [1] = "5% increased Effect of Herald Buffs on you", }, ["stats"] = { - ["banner_grant_1_fortify_when_placed_per_X_resources_from_runegraft"] = { + ["herald_effect_on_self_+%"] = { ["fmt"] = "d", ["max"] = 5, ["min"] = 5, }, }, - ["targetType"] = "Mastery", + ["targetType"] = "Small Intelligence", ["targetValue"] = "", }, - ["Runegraft of Refraction"] = { + ["Tattoo of the Arohongui Warmonger"] = { ["MaximumConnected"] = 100, ["MinimumConnected"] = 0, - ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/Village/RuneCraftingPassiveBG.png", - ["dn"] = "Runegraft of Refraction", - ["icon"] = "Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon7.png", - ["id"] = "runegraft_21", + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/ArohonguiTribePassiveBG.png", + ["dn"] = "Tattoo of the Arohongui Warmonger", + ["icon"] = "Art/2DArt/SkillIcons/passives/colddamage.png", + ["id"] = "Arohongui4", ["isTattoo"] = true, ["ks"] = false, - ["legacy"] = false, - ["m"] = true, - ["name"] = "Runegraft Mastery", + ["m"] = false, ["not"] = false, - ["overrideType"] = "AlternateMastery", + ["overrideType"] = "ArohonguiTattoo", ["sd"] = { - [1] = "Fire at most 1 Projectile", - [2] = "Projectiles Fork", - [3] = "Projectiles Chain an additional time", - [4] = "Limited to 1 Runegraft of Refraction", + [1] = "5% chance to Freeze", }, ["stats"] = { - ["maximum_number_of_projectiles_to_fire_is_1"] = { - ["fmt"] = "d", - ["max"] = 1, - ["min"] = 1, - }, - ["number_of_additional_chains_for_projectiles"] = { - ["fmt"] = "d", - ["max"] = 1, - ["min"] = 1, - }, - ["projectiles_fork"] = { + ["base_chance_to_freeze_%"] = { ["fmt"] = "d", - ["max"] = 1, - ["min"] = 1, + ["max"] = 5, + ["min"] = 5, }, }, - ["targetType"] = "Mastery", + ["targetType"] = "Small Intelligence", ["targetValue"] = "", }, - ["Runegraft of Restitching"] = { + ["Tattoo of the Arohongui Warrior"] = { ["MaximumConnected"] = 100, ["MinimumConnected"] = 0, - ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/Village/RuneCraftingPassiveBG.png", - ["dn"] = "Runegraft of Restitching", - ["icon"] = "Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon22.png", - ["id"] = "runegraft_17", + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/ArohonguiTribePassiveBG.png", + ["dn"] = "Tattoo of the Arohongui Warrior", + ["icon"] = "Art/2DArt/SkillIcons/passives/colddamage.png", + ["id"] = "Arohongui3", ["isTattoo"] = true, ["ks"] = false, - ["legacy"] = false, - ["m"] = true, - ["name"] = "Runegraft Mastery", + ["m"] = false, ["not"] = false, - ["overrideType"] = "AlternateMastery", + ["overrideType"] = "ArohonguiTattoo", ["sd"] = { - [1] = "40% of Damage taken from Critical Strikes Recouped as Life", - [2] = "Limited to 1 Runegraft of Restitching", + [1] = "5% increased Cold Damage", }, ["stats"] = { - ["damage_taken_from_criticals_recouped_as_life_%"] = { + ["cold_damage_+%"] = { ["fmt"] = "d", - ["max"] = 40, - ["min"] = 40, + ["max"] = 5, + ["min"] = 5, }, }, - ["targetType"] = "Mastery", + ["targetType"] = "Small Dexterity", ["targetValue"] = "", }, - ["Runegraft of Resurgence"] = { + ["Tattoo of the Hinekora Deathwarden"] = { ["MaximumConnected"] = 100, ["MinimumConnected"] = 0, - ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/Village/RuneCraftingPassiveBG.png", - ["dn"] = "Runegraft of Resurgence", - ["icon"] = "Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon31.png", - ["id"] = "runegraft_34", + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/HinekoraTribePassiveBG.png", + ["dn"] = "Tattoo of the Hinekora Deathwarden", + ["icon"] = "Art/2DArt/SkillIcons/passives/CursemitigationclusterNode.png", + ["id"] = "Hinekora2", ["isTattoo"] = true, ["ks"] = false, - ["m"] = true, - ["name"] = "Runegraft Mastery", + ["m"] = false, ["not"] = false, - ["overrideType"] = "AlternateMastery", + ["overrideType"] = "HinekoraTattoo", ["sd"] = { - [1] = "Arcane Surge also grants 15% increased Life Regeneration Rate to you", - [2] = "Limited to 1 Runegraft of Resurgence", + [1] = "6% reduced Effect of Curses on you", }, ["stats"] = { - ["arcane_surge_on_you_life_regeneration_rate_+%"] = { + ["curse_effect_on_self_+%"] = { ["fmt"] = "d", - ["max"] = 15, - ["min"] = 15, + ["max"] = 6, + ["min"] = 6, }, }, - ["targetType"] = "Mastery", + ["targetType"] = "Small Intelligence", ["targetValue"] = "", }, - ["Runegraft of Rotblood"] = { + ["Tattoo of the Hinekora Makanga"] = { ["MaximumConnected"] = 100, - ["MinimumConnected"] = 0, - ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/Village/RuneCraftingPassiveBG.png", - ["dn"] = "Runegraft of Rotblood", - ["icon"] = "Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon33.png", - ["id"] = "runegraft_29", + ["MinimumConnected"] = 7, + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/HinekoraTribePassiveBG.png", + ["dn"] = "Tattoo of the Hinekora Makanga", + ["icon"] = "Art/2DArt/SkillIcons/passives/CurseEffectNode.png", + ["id"] = "Hinekora7", ["isTattoo"] = true, ["ks"] = false, - ["m"] = true, - ["name"] = "Runegraft Mastery", + ["m"] = false, ["not"] = false, - ["overrideType"] = "AlternateMastery", + ["overrideType"] = "HinekoraTattoo", + ["reminderText"] = { + [1] = "Requires at least 7 adjacent Passive Skills to be allocated", + }, ["sd"] = { - [1] = "Enemies Poisoned by you have 10% of Physical Damage they deal converted to Chaos", - [2] = "Limited to 1 Runegraft of Rotblood", + [1] = "8% increased Effect of your Curses", }, ["stats"] = { - ["enemies_poisoned_by_you_have_physical_damage_%_converted_to_chaos"] = { + ["curse_effect_+%"] = { ["fmt"] = "d", - ["max"] = 10, - ["min"] = 10, + ["max"] = 8, + ["min"] = 8, }, }, - ["targetType"] = "Mastery", + ["targetType"] = "Small Intelligence", ["targetValue"] = "", }, - ["Runegraft of Stability"] = { + ["Tattoo of the Hinekora Shaman"] = { ["MaximumConnected"] = 100, ["MinimumConnected"] = 0, - ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/Village/RuneCraftingPassiveBG.png", - ["dn"] = "Runegraft of Stability", - ["icon"] = "Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon2.png", - ["id"] = "runegraft_23", + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/HinekoraTribePassiveBG.png", + ["dn"] = "Tattoo of the Hinekora Shaman", + ["icon"] = "Art/2DArt/SkillIcons/passives/mana.png", + ["id"] = "Hinekora3", ["isTattoo"] = true, ["ks"] = false, - ["legacy"] = false, - ["m"] = true, - ["name"] = "Runegraft Mastery", + ["m"] = false, ["not"] = false, - ["overrideType"] = "AlternateMastery", + ["overrideType"] = "HinekoraTattoo", ["sd"] = { - [1] = "Your Lucky or Unlucky effects are instead Unexciting", - [2] = "Limited to 1 Runegraft of Stability", + [1] = "8% increased Mana Regeneration Rate", }, ["stats"] = { - ["lucky_or_unlucky_effects_are_instead_unexciting"] = { + ["mana_regeneration_rate_+%"] = { ["fmt"] = "d", - ["max"] = 1, - ["min"] = 1, + ["max"] = 8, + ["min"] = 8, }, }, - ["targetType"] = "Mastery", + ["targetType"] = "Small Intelligence", ["targetValue"] = "", }, - ["Runegraft of Suffering"] = { + ["Tattoo of the Hinekora Storyteller"] = { ["MaximumConnected"] = 100, ["MinimumConnected"] = 0, - ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/Village/RuneCraftingPassiveBG.png", - ["dn"] = "Runegraft of Suffering", - ["icon"] = "Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon27.png", - ["id"] = "runegraft_32", + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/HinekoraTribePassiveBG.png", + ["dn"] = "Tattoo of the Hinekora Storyteller", + ["icon"] = "Art/2DArt/SkillIcons/passives/skillduration.png", + ["id"] = "Hinekora4", ["isTattoo"] = true, ["ks"] = false, - ["m"] = true, - ["name"] = "Runegraft Mastery", + ["m"] = false, ["not"] = false, - ["overrideType"] = "AlternateMastery", + ["overrideType"] = "HinekoraTattoo", ["sd"] = { - [1] = "50% increased Damage with Damaging Ailments you inflict while you are affected by the same Ailment", - [2] = "Limited to 1 Runegraft of Suffering", + [1] = "+3% to Chaos Resistance", }, ["stats"] = { - ["damaging_ailment_damage_+%_while_suffering_from_that_ailment"] = { + ["base_chaos_damage_resistance_%"] = { ["fmt"] = "d", - ["max"] = 50, - ["min"] = 50, + ["max"] = 3, + ["min"] = 3, }, }, - ["targetType"] = "Mastery", + ["targetType"] = "Small Intelligence", ["targetValue"] = "", }, - ["Runegraft of Time"] = { + ["Tattoo of the Hinekora Warmonger"] = { ["MaximumConnected"] = 100, ["MinimumConnected"] = 0, - ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/Village/RuneCraftingPassiveBG.png", - ["dn"] = "Runegraft of Time", - ["icon"] = "Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon19.png", - ["id"] = "runegraft_14", + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/HinekoraTribePassiveBG.png", + ["dn"] = "Tattoo of the Hinekora Warmonger", + ["icon"] = "Art/2DArt/SkillIcons/passives/minionlife.png", + ["id"] = "Hinekora5", ["isTattoo"] = true, ["ks"] = false, - ["legacy"] = false, - ["m"] = true, - ["name"] = "Runegraft Mastery", + ["m"] = false, ["not"] = false, - ["overrideType"] = "AlternateMastery", + ["overrideType"] = "HinekoraTattoo", ["sd"] = { - [1] = "20% chance for Skills to not consume a Cooldown on use", - [2] = "Limited to 1 Runegraft of Time", + [1] = "Minions have 5% increased maximum Life", }, ["stats"] = { - ["base_cooldown_refresh_chance_%"] = { + ["minion_maximum_life_+%"] = { ["fmt"] = "d", - ["max"] = 20, - ["min"] = 20, + ["max"] = 5, + ["min"] = 5, }, }, - ["targetType"] = "Mastery", + ["targetType"] = "Small Intelligence", ["targetValue"] = "", }, - ["Runegraft of Treachery"] = { + ["Tattoo of the Hinekora Warrior"] = { ["MaximumConnected"] = 100, ["MinimumConnected"] = 0, - ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/Village/RuneCraftingPassiveBG.png", - ["dn"] = "Runegraft of Treachery", - ["icon"] = "Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon20.png", - ["id"] = "runegraft_15", + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/HinekoraTribePassiveBG.png", + ["dn"] = "Tattoo of the Hinekora Warrior", + ["icon"] = "Art/2DArt/SkillIcons/passives/energyshield.png", + ["id"] = "Hinekora1", ["isTattoo"] = true, ["ks"] = false, - ["legacy"] = false, - ["m"] = true, - ["name"] = "Runegraft Mastery", + ["m"] = false, ["not"] = false, - ["overrideType"] = "AlternateMastery", + ["overrideType"] = "HinekoraTattoo", ["sd"] = { - [1] = "15% increased Reservation Efficiency of Skills", - [2] = "Auras from your Skills which affect Allies also affect Enemies", - [3] = "Limited to 1 Runegraft of Treachery", + [1] = "3% increased maximum Energy Shield", }, ["stats"] = { - ["base_aura_skills_affecting_allies_also_affect_enemies"] = { - ["fmt"] = "d", - ["max"] = 1, - ["min"] = 1, - }, - ["base_reservation_efficiency_+%"] = { + ["maximum_energy_shield_+%"] = { ["fmt"] = "d", - ["max"] = 15, - ["min"] = 15, + ["max"] = 3, + ["min"] = 3, }, }, - ["targetType"] = "Mastery", + ["targetType"] = "Small Intelligence", ["targetValue"] = "", }, - ["Runegraft of the Agile"] = { + ["Tattoo of the Kitava Blood Drinker"] = { ["MaximumConnected"] = 100, ["MinimumConnected"] = 0, - ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/Village/RuneCraftingPassiveBG.png", - ["dn"] = "Runegraft of the Agile", - ["icon"] = "Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon32.png", - ["id"] = "runegraft_31", + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KitavaTribePassiveBG.png", + ["dn"] = "Tattoo of the Kitava Blood Drinker", + ["icon"] = "Art/2DArt/SkillIcons/passives/lifegainpertarget.png", + ["id"] = "Kitava1", ["isTattoo"] = true, ["ks"] = false, - ["m"] = true, - ["name"] = "Runegraft Mastery", + ["m"] = false, ["not"] = false, - ["overrideType"] = "AlternateMastery", + ["overrideType"] = "KitavaTattoo", ["sd"] = { - [1] = "Elusive's Effect on you is increased instead for the first 2 seconds", - [2] = "Limited to 1 Runegraft of the Agile", + [1] = "0.5% of Attack Damage Leeched as Life", }, ["stats"] = { - ["elusive_ticks_up_instead_for_x_ms"] = { + ["base_life_leech_from_attack_damage_permyriad"] = { ["fmt"] = "g", - ["max"] = 2, - ["min"] = 2, + ["max"] = 0.5, + ["min"] = 0.5, }, }, - ["targetType"] = "Mastery", + ["targetType"] = "Small Strength", ["targetValue"] = "", }, - ["Runegraft of the Angler"] = { + ["Tattoo of the Kitava Heart Eater"] = { ["MaximumConnected"] = 100, ["MinimumConnected"] = 0, - ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/Village/RuneCraftingPassiveBG.png", - ["dn"] = "Runegraft of the Angler", - ["icon"] = "Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon10.png", - ["id"] = "runegraft_25", + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KitavaTribePassiveBG.png", + ["dn"] = "Tattoo of the Kitava Heart Eater", + ["icon"] = "Art/2DArt/SkillIcons/passives/lifegainpertarget.png", + ["id"] = "Kitava4", ["isTattoo"] = true, ["ks"] = false, - ["legacy"] = false, - ["m"] = true, - ["name"] = "Runegraft Mastery", + ["m"] = false, ["not"] = false, - ["overrideType"] = "AlternateMastery", + ["overrideType"] = "KitavaTattoo", ["sd"] = { - [1] = "All hits are Critical Strikes while holding a Fishing Rod", - [2] = "Limited to 1 Runegraft of the Angler", + [1] = "Killing Blows have 4% chance to Consume corpses to recover 10% of Maximum Life", }, ["stats"] = { - ["always_crit_while_holding_fishing_rod"] = { + ["killing_blow_consumes_corpse_restore_10%_life_chance_%"] = { ["fmt"] = "d", - ["max"] = 1, - ["min"] = 1, + ["max"] = 4, + ["min"] = 4, }, }, - ["targetType"] = "Mastery", + ["targetType"] = "Small Intelligence", ["targetValue"] = "", }, - ["Runegraft of the Bound"] = { + ["Tattoo of the Kitava Makanga"] = { ["MaximumConnected"] = 100, - ["MinimumConnected"] = 0, - ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/Village/RuneCraftingPassiveBG.png", - ["dn"] = "Runegraft of the Bound", - ["icon"] = "Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon3.png", - ["id"] = "runegraft_5", + ["MinimumConnected"] = 7, + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KitavaTribePassiveBG.png", + ["dn"] = "Tattoo of the Kitava Makanga", + ["icon"] = "Art/2DArt/SkillIcons/passives/lifegainpertarget.png", + ["id"] = "Kitava7", ["isTattoo"] = true, ["ks"] = false, - ["legacy"] = false, - ["m"] = true, - ["name"] = "Runegraft Mastery", + ["m"] = false, ["not"] = false, - ["overrideType"] = "AlternateMastery", + ["overrideType"] = "KitavaTattoo", + ["reminderText"] = { + [1] = "Requires at least 7 adjacent Passive Skills to be allocated", + }, ["sd"] = { - [1] = "20% reduced bonuses gained from Equipped Boots", - [2] = "20% increased bonuses gained from Equipped Gloves", - [3] = "Limited to 1 Runegraft of the Bound", + [1] = "80% increased Maximum total Life Recovery per second from Leech", }, ["stats"] = { - ["boots_mod_effect_+%"] = { - ["fmt"] = "d", - ["max"] = 20, - ["min"] = 20, - }, - ["gloves_mod_effect_+%"] = { + ["maximum_life_leech_rate_+%"] = { ["fmt"] = "d", - ["max"] = 20, - ["min"] = 20, + ["max"] = 80, + ["min"] = 80, }, }, - ["targetType"] = "Mastery", + ["targetType"] = "Small Strength", ["targetValue"] = "", }, - ["Runegraft of the Combatant"] = { + ["Tattoo of the Kitava Rebel"] = { ["MaximumConnected"] = 100, ["MinimumConnected"] = 0, - ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/Village/RuneCraftingPassiveBG.png", - ["dn"] = "Runegraft of the Combatant", - ["icon"] = "Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon4.png", - ["id"] = "runegraft_3", + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KitavaTribePassiveBG.png", + ["dn"] = "Tattoo of the Kitava Rebel", + ["icon"] = "Art/2DArt/SkillIcons/passives/Blood2.png", + ["id"] = "Kitava2", ["isTattoo"] = true, ["ks"] = false, - ["legacy"] = false, - ["m"] = true, - ["name"] = "Runegraft Mastery", + ["m"] = false, ["not"] = false, - ["overrideType"] = "AlternateMastery", + ["overrideType"] = "KitavaTattoo", ["sd"] = { - [1] = "50% increased Attack Damage against Enemies with a higher percentage of their Life remaining than you", - [2] = "Limited to 1 Runegraft of the Combatant", + [1] = "10% chance to Avoid Bleeding", }, ["stats"] = { - ["attack_damage_+%_when_lower_percentage_life_than_target"] = { + ["base_avoid_bleed_%"] = { ["fmt"] = "d", - ["max"] = 50, - ["min"] = 50, + ["max"] = 10, + ["min"] = 10, }, }, - ["targetType"] = "Mastery", + ["targetType"] = "Small Strength", ["targetValue"] = "", }, - ["Runegraft of the Fortress"] = { + ["Tattoo of the Kitava Shaman"] = { ["MaximumConnected"] = 100, ["MinimumConnected"] = 0, - ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/Village/RuneCraftingPassiveBG.png", - ["dn"] = "Runegraft of the Fortress", - ["icon"] = "Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon1.png", - ["id"] = "runegraft_2", + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KitavaTribePassiveBG.png", + ["dn"] = "Tattoo of the Kitava Shaman", + ["icon"] = "Art/2DArt/SkillIcons/passives/SkillscostingLifenode.png", + ["id"] = "Kitava5", ["isTattoo"] = true, ["ks"] = false, - ["legacy"] = false, - ["m"] = true, - ["name"] = "Runegraft Mastery", + ["m"] = false, ["not"] = false, - ["overrideType"] = "AlternateMastery", + ["overrideType"] = "KitavaTattoo", ["sd"] = { - [1] = "10% reduced Attributes", - [2] = "40% increased Global Defences", - [3] = "Limited to 1 Runegraft of the Fortress", + [1] = "Attacks have 5% chance to cause Bleeding", }, ["stats"] = { - ["all_attributes_+%"] = { - ["fmt"] = "d", - ["max"] = 10, - ["min"] = 10, - }, - ["global_defences_+%"] = { + ["bleed_on_hit_with_attacks_%"] = { ["fmt"] = "d", - ["max"] = 40, - ["min"] = 40, + ["max"] = 5, + ["min"] = 5, }, }, - ["targetType"] = "Mastery", + ["targetType"] = "Small Strength", ["targetValue"] = "", }, - ["Runegraft of the Gauche"] = { + ["Tattoo of the Kitava Warrior"] = { ["MaximumConnected"] = 100, ["MinimumConnected"] = 0, - ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/Village/RuneCraftingPassiveBG.png", - ["dn"] = "Runegraft of the Gauche", - ["icon"] = "Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon16.png", - ["id"] = "runegraft_11", + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KitavaTribePassiveBG.png", + ["dn"] = "Tattoo of the Kitava Warrior", + ["icon"] = "Art/2DArt/SkillIcons/passives/damage.png", + ["id"] = "Kitava3", ["isTattoo"] = true, ["ks"] = false, - ["legacy"] = false, - ["m"] = true, - ["name"] = "Runegraft Mastery", + ["m"] = false, ["not"] = false, - ["overrideType"] = "AlternateMastery", + ["overrideType"] = "KitavaTattoo", ["sd"] = { - [1] = "Hit Damage with your Off Hand treats Enemy Monster", - [2] = "Elemental Resistance values as inverted", - [3] = "Limited to 1 Runegraft of the Gauche", + [1] = "5% increased Physical Damage", }, ["stats"] = { - ["off_hand_treat_enemy_resistances_as_negated_on_elemental_damage_hit"] = { + ["physical_damage_+%"] = { ["fmt"] = "d", - ["max"] = 1, - ["min"] = 1, + ["max"] = 5, + ["min"] = 5, }, }, - ["targetType"] = "Mastery", + ["targetType"] = "Small Strength", ["targetValue"] = "", }, - ["Runegraft of the Imbued"] = { + ["Tattoo of the Ngamahu Firewalker"] = { ["MaximumConnected"] = 100, ["MinimumConnected"] = 0, - ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/Village/RuneCraftingPassiveBG.png", - ["dn"] = "Runegraft of the Imbued", - ["icon"] = "Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon30.png", - ["id"] = "runegraft_30", + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/NgamahuTribePassiveBG.png", + ["dn"] = "Tattoo of the Ngamahu Firewalker", + ["icon"] = "Art/2DArt/SkillIcons/passives/FireResistNode.png", + ["id"] = "Ngamahu1", ["isTattoo"] = true, ["ks"] = false, - ["m"] = true, - ["name"] = "Runegraft Mastery", + ["m"] = false, ["not"] = false, - ["overrideType"] = "AlternateMastery", + ["overrideType"] = "NgamahuTattoo", ["sd"] = { - [1] = "Tinctures applied to you have 30% increased Effect while affected by no Flasks", - [2] = "Limited to 1 Runegraft of the Imbued", + [1] = "+6% to Fire Resistance", }, ["stats"] = { - ["tincture_effect_+%_while_not_using_flask"] = { + ["base_fire_damage_resistance_%"] = { ["fmt"] = "d", - ["max"] = 30, - ["min"] = 30, + ["max"] = 6, + ["min"] = 6, }, }, - ["targetType"] = "Mastery", + ["targetType"] = "Small Strength", ["targetValue"] = "", }, - ["Runegraft of the Jeweller"] = { - ["MaximumConnected"] = 100, + ["Tattoo of the Ngamahu Makanga"] = { + ["MaximumConnected"] = 1, ["MinimumConnected"] = 0, - ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/Village/RuneCraftingPassiveBG.png", - ["dn"] = "Runegraft of the Jeweller", - ["icon"] = "Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon8.png", - ["id"] = "runegraft_22", + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/NgamahuTribePassiveBG.png", + ["dn"] = "Tattoo of the Ngamahu Makanga", + ["icon"] = "Art/2DArt/SkillIcons/passives/FireResistNode.png", + ["id"] = "Ngamahu7", ["isTattoo"] = true, ["ks"] = false, - ["legacy"] = false, - ["m"] = true, - ["name"] = "Runegraft Mastery", + ["m"] = false, ["not"] = false, - ["overrideType"] = "AlternateMastery", + ["overrideType"] = "NgamahuTattoo", + ["reminderText"] = { + [1] = "Requires that no more than 1 adjacent Passive Skills to be allocated", + }, ["sd"] = { - [1] = "10% increased Damage for each unlinked Socket in Equipped Two Handed Weapon", - [2] = "Limited to 1 Runegraft of the Jeweller", + [1] = "+1% to maximum Fire Resistance", }, ["stats"] = { - ["two_handed_attack_damage_+%_per_unlinked_socket_on_weapon"] = { + ["base_maximum_fire_damage_resistance_%"] = { ["fmt"] = "d", - ["max"] = 10, - ["min"] = 10, + ["max"] = 1, + ["min"] = 1, }, }, - ["targetType"] = "Mastery", + ["targetType"] = "Small Strength", ["targetValue"] = "", }, - ["Runegraft of the Novamark"] = { + ["Tattoo of the Ngamahu Shaman"] = { ["MaximumConnected"] = 100, ["MinimumConnected"] = 0, - ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/Village/RuneCraftingPassiveBG.png", - ["dn"] = "Runegraft of the Novamark", - ["icon"] = "Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon25.png", - ["id"] = "runegraft_20", + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/NgamahuTribePassiveBG.png", + ["dn"] = "Tattoo of the Ngamahu Shaman", + ["icon"] = "Art/2DArt/SkillIcons/passives/FireResistNode.png", + ["id"] = "Ngamahu2", ["isTattoo"] = true, ["ks"] = false, - ["legacy"] = false, - ["m"] = true, - ["name"] = "Runegraft Mastery", + ["m"] = false, ["not"] = false, - ["overrideType"] = "AlternateMastery", + ["overrideType"] = "NgamahuTattoo", ["sd"] = { - [1] = "Nova Spells Cast at a Marked target instead of around you if possible", - [2] = "Limited to 1 Runegraft of the Novamark", + [1] = "10% reduced Ignite Duration on you", }, ["stats"] = { - ["nova_spells_cast_at_marked_target"] = { + ["base_self_ignite_duration_-%"] = { ["fmt"] = "d", - ["max"] = 1, - ["min"] = 1, + ["max"] = 10, + ["min"] = 10, }, }, - ["targetType"] = "Mastery", + ["targetType"] = "Small Strength", ["targetValue"] = "", }, - ["Runegraft of the River"] = { + ["Tattoo of the Ngamahu Warmonger"] = { ["MaximumConnected"] = 100, ["MinimumConnected"] = 0, - ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/Village/RuneCraftingPassiveBG.png", - ["dn"] = "Runegraft of the River", - ["icon"] = "Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon5.png", - ["id"] = "runegraft_1", + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/NgamahuTribePassiveBG.png", + ["dn"] = "Tattoo of the Ngamahu Warmonger", + ["icon"] = "Art/2DArt/SkillIcons/passives/firedamage.png", + ["id"] = "Ngamahu4", ["isTattoo"] = true, ["ks"] = false, - ["legacy"] = false, - ["m"] = true, - ["name"] = "Runegraft Mastery", + ["m"] = false, ["not"] = false, - ["overrideType"] = "AlternateMastery", + ["overrideType"] = "NgamahuTattoo", ["sd"] = { - [1] = "20% chance on reaching Low Life to recover to Full Life", - [2] = "Limited to 1 Runegraft of the River", + [1] = "5% chance to Ignite", }, ["stats"] = { - ["chance_%_to_return_to_full_life_on_reaching_low_life"] = { + ["base_chance_to_ignite_%"] = { ["fmt"] = "d", - ["max"] = 20, - ["min"] = 20, + ["max"] = 5, + ["min"] = 5, }, }, - ["targetType"] = "Mastery", + ["targetType"] = "Small Strength", ["targetValue"] = "", }, - ["Runegraft of the Sinistral"] = { + ["Tattoo of the Ngamahu Warrior"] = { ["MaximumConnected"] = 100, ["MinimumConnected"] = 0, - ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/Village/RuneCraftingPassiveBG.png", - ["dn"] = "Runegraft of the Sinistral", - ["icon"] = "Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon6.png", - ["id"] = "runegraft_4", + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/NgamahuTribePassiveBG.png", + ["dn"] = "Tattoo of the Ngamahu Warrior", + ["icon"] = "Art/2DArt/SkillIcons/passives/firedamage.png", + ["id"] = "Ngamahu3", ["isTattoo"] = true, ["ks"] = false, - ["legacy"] = false, - ["m"] = true, - ["name"] = "Runegraft Mastery", + ["m"] = false, ["not"] = false, - ["overrideType"] = "AlternateMastery", + ["overrideType"] = "NgamahuTattoo", ["sd"] = { - [1] = "10% more Attack speed with Offhand", - [2] = "Limited to 1 Runegraft of the Sinistral", + [1] = "5% increased Fire Damage", }, ["stats"] = { - ["runegraft_offhand_attack_speed_+%_final"] = { + ["fire_damage_+%"] = { ["fmt"] = "d", - ["max"] = 10, - ["min"] = 10, + ["max"] = 5, + ["min"] = 5, }, }, - ["targetType"] = "Mastery", + ["targetType"] = "Small Strength", ["targetValue"] = "", }, - ["Runegraft of the Soulwick"] = { + ["Tattoo of the Ngamahu Woodcarver"] = { ["MaximumConnected"] = 100, ["MinimumConnected"] = 0, - ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/Village/RuneCraftingPassiveBG.png", - ["dn"] = "Runegraft of the Soulwick", - ["icon"] = "Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon12.png", - ["id"] = "runegraft_7", + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/NgamahuTribePassiveBG.png", + ["dn"] = "Tattoo of the Ngamahu Woodcarver", + ["icon"] = "Art/2DArt/SkillIcons/passives/totemandbrandlife.png", + ["id"] = "Ngamahu5", ["isTattoo"] = true, ["ks"] = false, - ["legacy"] = false, - ["m"] = true, - ["name"] = "Runegraft Mastery", + ["m"] = false, ["not"] = false, - ["overrideType"] = "AlternateMastery", + ["overrideType"] = "NgamahuTattoo", ["sd"] = { - [1] = "Gain 1 Vaal Soul per second", - [2] = "Limited to 1 Runegraft of the Soulwick", + [1] = "5% increased Totem Life", }, ["stats"] = { - ["vaal_souls_gained_per_minute"] = { - ["fmt"] = "g", - ["max"] = 1, - ["min"] = 1, + ["totem_life_+%"] = { + ["fmt"] = "d", + ["max"] = 5, + ["min"] = 5, }, }, - ["targetType"] = "Mastery", + ["targetType"] = "Small Strength", ["targetValue"] = "", }, - ["Runegraft of the Spellbound"] = { + ["Tattoo of the Ramako Archer"] = { ["MaximumConnected"] = 100, ["MinimumConnected"] = 0, - ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/Village/RuneCraftingPassiveBG.png", - ["dn"] = "Runegraft of the Spellbound", - ["icon"] = "Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon26.png", - ["id"] = "runegraft_33", + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/RamakoTribePassiveBG.png", + ["dn"] = "Tattoo of the Ramako Archer", + ["icon"] = "Art/2DArt/SkillIcons/passives/accuracy.png", + ["id"] = "Ramako2", ["isTattoo"] = true, ["ks"] = false, - ["m"] = true, - ["name"] = "Runegraft Mastery", + ["m"] = false, ["not"] = false, - ["overrideType"] = "AlternateMastery", + ["overrideType"] = "RamakoTattoo", ["sd"] = { - [1] = "Spells have Added Spell Damage equal to 30% of Physical Damage of", - [2] = "your Equipped Two handed Weapon", - [3] = "Limited to 1 Runegraft of the Spellbound", + [1] = "5% increased Global Accuracy Rating", }, ["stats"] = { - ["gain_%_of_two_hand_weapon_physical_damage_as_added_spell_damage"] = { + ["accuracy_rating_+%"] = { ["fmt"] = "d", - ["max"] = 30, - ["min"] = 30, + ["max"] = 5, + ["min"] = 5, }, }, - ["targetType"] = "Mastery", + ["targetType"] = "Small Dexterity", ["targetValue"] = "", }, - ["Runegraft of the Warp"] = { + ["Tattoo of the Ramako Fleetfoot"] = { ["MaximumConnected"] = 100, ["MinimumConnected"] = 0, - ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/Village/RuneCraftingPassiveBG.png", - ["dn"] = "Runegraft of the Warp", - ["icon"] = "Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon11.png", - ["id"] = "runegraft_6", + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/RamakoTribePassiveBG.png", + ["dn"] = "Tattoo of the Ramako Fleetfoot", + ["icon"] = "Art/2DArt/SkillIcons/passives/MovementSpeedandEvasionPassive.png", + ["id"] = "Ramako4", ["isTattoo"] = true, ["ks"] = false, - ["legacy"] = false, - ["m"] = true, - ["name"] = "Runegraft Mastery", + ["m"] = false, ["not"] = false, - ["overrideType"] = "AlternateMastery", + ["overrideType"] = "RamakoTattoo", ["sd"] = { - [1] = "Buffs on you expire 30% slower", - [2] = "Debuffs on you expire 30% faster", - [3] = "Limited to 1 Runegraft of the Warp", + [1] = "2% increased Movement Speed", }, ["stats"] = { - ["buff_time_passed_+%_only_buff_category"] = { - ["fmt"] = "d", - ["max"] = 30, - ["min"] = 30, - }, - ["debuff_time_passed_+%"] = { + ["base_movement_velocity_+%"] = { ["fmt"] = "d", - ["max"] = 30, - ["min"] = 30, + ["max"] = 2, + ["min"] = 2, }, }, - ["targetType"] = "Mastery", + ["targetType"] = "Small Dexterity", ["targetValue"] = "", }, - ["Runegraft of the Witchmark"] = { + ["Tattoo of the Ramako Makanga"] = { ["MaximumConnected"] = 100, - ["MinimumConnected"] = 0, - ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/Village/RuneCraftingPassiveBG.png", - ["dn"] = "Runegraft of the Witchmark", - ["icon"] = "Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon24.png", - ["id"] = "runegraft_19", + ["MinimumConnected"] = 7, + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/RamakoTribePassiveBG.png", + ["dn"] = "Tattoo of the Ramako Makanga", + ["icon"] = "Art/2DArt/SkillIcons/passives/IncreasedProjectileSpeedNode.png", + ["id"] = "Ramako7", ["isTattoo"] = true, ["ks"] = false, - ["legacy"] = false, - ["m"] = true, - ["name"] = "Runegraft Mastery", + ["m"] = false, ["not"] = false, - ["overrideType"] = "AlternateMastery", + ["overrideType"] = "RamakoTattoo", + ["reminderText"] = { + [1] = "Requires at least 7 adjacent Passive Skills to be allocated", + }, ["sd"] = { - [1] = "Spells deal added Chaos Damage equal to 2% of your maximum Life", - [2] = "Spells Cost +8% of Life", - [3] = "Limited to 1 Runegraft of the Witchmark", + [1] = "Skills fire an additional Projectile", }, ["stats"] = { - ["additional_chaos_damage_to_spells_equal_to_%_maximum_life"] = { - ["fmt"] = "d", - ["max"] = 2, - ["min"] = 2, - }, - ["spell_base_life_cost_%"] = { + ["number_of_additional_projectiles"] = { ["fmt"] = "d", - ["max"] = 8, - ["min"] = 8, + ["max"] = 1, + ["min"] = 1, }, }, - ["targetType"] = "Mastery", + ["targetType"] = "Small Dexterity", ["targetValue"] = "", }, - ["Solipsism"] = { + ["Tattoo of the Ramako Scout"] = { ["MaximumConnected"] = 100, ["MinimumConnected"] = 0, - ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", - ["dn"] = "Solipsism", - ["icon"] = "Art/2DArt/SkillIcons/passives/Resilience.png", - ["id"] = "resilience_keystone2851_", + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/RamakoTribePassiveBG.png", + ["dn"] = "Tattoo of the Ramako Scout", + ["icon"] = "Art/2DArt/SkillIcons/passives/evade.png", + ["id"] = "Ramako1", ["isTattoo"] = true, - ["ks"] = true, + ["ks"] = false, ["m"] = false, ["not"] = false, - ["overrideType"] = "KeystoneTattoo", + ["overrideType"] = "RamakoTattoo", ["sd"] = { - [1] = "Intelligence provides no inherent bonus to Energy Shield", - [2] = "2% reduced Duration of Elemental Ailments on you per 15 Intelligence", - [3] = "Limited to 1 Keystone Tattoo", + [1] = "6% increased Evasion Rating", }, ["stats"] = { - ["keystone_solipsism"] = { + ["evasion_rating_+%"] = { ["fmt"] = "d", - ["index"] = 1, - ["max"] = 1, - ["min"] = 1, - ["statOrder"] = 10965, + ["max"] = 6, + ["min"] = 6, }, }, - ["targetType"] = "Keystone", + ["targetType"] = "Small Dexterity", ["targetValue"] = "", }, - ["Supreme Ego"] = { + ["Tattoo of the Ramako Shaman"] = { ["MaximumConnected"] = 100, ["MinimumConnected"] = 0, - ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", - ["dn"] = "Supreme Ego", - ["icon"] = "Art/2DArt/SkillIcons/passives/SupremeEgo.png", - ["id"] = "supreme_ego_keystone2696", + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/RamakoTribePassiveBG.png", + ["dn"] = "Tattoo of the Ramako Shaman", + ["icon"] = "Art/2DArt/SkillIcons/passives/SpellSuppresionNode.png", + ["id"] = "Ramako5", ["isTattoo"] = true, - ["ks"] = true, + ["ks"] = false, ["m"] = false, ["not"] = false, - ["overrideType"] = "KeystoneTattoo", - ["sd"] = { - [1] = "Auras from your Skills can only affect you", - [2] = "Aura Skills have 1% more Aura Effect per 2% of maximum Mana they Reserve", - [3] = "40% more Mana Reservation of Aura Skills", - [4] = "Limited to 1 Keystone Tattoo", + ["overrideType"] = "RamakoTattoo", + ["sd"] = { + [1] = "+2% chance to Suppress Spell Damage", }, ["stats"] = { - ["keystone_supreme_ego"] = { + ["base_spell_suppression_chance_%"] = { ["fmt"] = "d", - ["index"] = 1, - ["max"] = 1, - ["min"] = 1, - ["statOrder"] = 10968, + ["max"] = 2, + ["min"] = 2, }, }, - ["targetType"] = "Keystone", + ["targetType"] = "Small Dexterity", ["targetValue"] = "", }, - ["Tattoo of the Arohongui Makanga"] = { - ["MaximumConnected"] = 1, + ["Tattoo of the Ramako Sniper"] = { + ["MaximumConnected"] = 100, ["MinimumConnected"] = 0, - ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/ArohonguiTribePassiveBG.png", - ["dn"] = "Tattoo of the Arohongui Makanga", - ["icon"] = "Art/2DArt/SkillIcons/passives/ColdResistNode.png", - ["id"] = "Arohongui7", + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/RamakoTribePassiveBG.png", + ["dn"] = "Tattoo of the Ramako Sniper", + ["icon"] = "Art/2DArt/SkillIcons/passives/projectilespeed.png", + ["id"] = "Ramako3", ["isTattoo"] = true, ["ks"] = false, - ["legacy"] = true, ["m"] = false, ["not"] = false, - ["overrideType"] = "ArohonguiTattoo", - ["reminderText"] = { - [1] = "Requires that no more than 1 adjacent Passive Skills to be allocated", - }, + ["overrideType"] = "RamakoTattoo", ["sd"] = { - [1] = "+1% to maximum Cold Resistance", + [1] = "5% increased Projectile Speed", }, ["stats"] = { - ["base_maximum_cold_damage_resistance_%"] = { + ["base_projectile_speed_+%"] = { ["fmt"] = "d", - ["max"] = 1, - ["min"] = 1, + ["max"] = 5, + ["min"] = 5, }, }, ["targetType"] = "Small Dexterity", ["targetValue"] = "", }, - ["Tattoo of the Arohongui Moonwarden"] = { + ["Tattoo of the Rongokurai Brute"] = { ["MaximumConnected"] = 100, ["MinimumConnected"] = 0, - ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/ArohonguiTribePassiveBG.png", - ["dn"] = "Tattoo of the Arohongui Moonwarden", - ["icon"] = "Art/2DArt/SkillIcons/passives/ColdResistNode.png", - ["id"] = "Arohongui1", + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/RongokuraiTribePassiveBG.png", + ["dn"] = "Tattoo of the Rongokurai Brute", + ["icon"] = "Art/2DArt/SkillIcons/passives/stunstr.png", + ["id"] = "Rongokurai2", ["isTattoo"] = true, ["ks"] = false, - ["legacy"] = false, ["m"] = false, ["not"] = false, - ["overrideType"] = "ArohonguiTattoo", + ["overrideType"] = "RongokuraiTattoo", ["sd"] = { - [1] = "+6% to Cold Resistance", + [1] = "10% increased Stun Threshold", }, ["stats"] = { - ["base_cold_damage_resistance_%"] = { + ["stun_threshold_+%"] = { ["fmt"] = "d", - ["max"] = 6, - ["min"] = 6, + ["max"] = 10, + ["min"] = 10, }, }, - ["targetType"] = "Small Dexterity", + ["targetType"] = "Small Strength", ["targetValue"] = "", }, - ["Tattoo of the Arohongui Scout"] = { + ["Tattoo of the Rongokurai Goliath"] = { ["MaximumConnected"] = 100, ["MinimumConnected"] = 0, - ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/ArohonguiTribePassiveBG.png", - ["dn"] = "Tattoo of the Arohongui Scout", - ["icon"] = "Art/2DArt/SkillIcons/passives/ColdResistNode.png", - ["id"] = "Arohongui2", + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/RongokuraiTribePassiveBG.png", + ["dn"] = "Tattoo of the Rongokurai Goliath", + ["icon"] = "Art/2DArt/SkillIcons/passives/stunstr.png", + ["id"] = "Rongokurai3", ["isTattoo"] = true, ["ks"] = false, - ["legacy"] = false, ["m"] = false, ["not"] = false, - ["overrideType"] = "ArohonguiTattoo", + ["overrideType"] = "RongokuraiTattoo", ["sd"] = { - [1] = "10% chance to Avoid being Chilled", - [2] = "10% chance to Avoid being Frozen", + [1] = "10% increased Stun Duration on Enemies", }, ["stats"] = { - ["base_avoid_chill_%"] = { - ["fmt"] = "d", - ["max"] = 10, - ["min"] = 10, - }, - ["base_avoid_freeze_%"] = { + ["base_stun_duration_+%"] = { ["fmt"] = "d", ["max"] = 10, ["min"] = 10, }, }, - ["targetType"] = "Small Dexterity", + ["targetType"] = "Small Strength", ["targetValue"] = "", }, - ["Tattoo of the Arohongui Shaman"] = { + ["Tattoo of the Rongokurai Guard"] = { ["MaximumConnected"] = 100, ["MinimumConnected"] = 0, - ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/ArohonguiTribePassiveBG.png", - ["dn"] = "Tattoo of the Arohongui Shaman", - ["icon"] = "Art/2DArt/SkillIcons/passives/HeraldReservationNode.png", - ["id"] = "Arohongui5", + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/RongokuraiTribePassiveBG.png", + ["dn"] = "Tattoo of the Rongokurai Guard", + ["icon"] = "Art/2DArt/SkillIcons/passives/dmgreduction.png", + ["id"] = "Rongokurai5", ["isTattoo"] = true, ["ks"] = false, - ["legacy"] = false, ["m"] = false, ["not"] = false, - ["overrideType"] = "ArohonguiTattoo", + ["overrideType"] = "RongokuraiTattoo", ["sd"] = { - [1] = "5% increased Effect of Herald Buffs on you", + [1] = "Guard Skills have 6% increased Duration", }, ["stats"] = { - ["herald_effect_on_self_+%"] = { + ["guard_skill_effect_duration_+%"] = { ["fmt"] = "d", - ["max"] = 5, - ["min"] = 5, + ["max"] = 6, + ["min"] = 6, }, }, - ["targetType"] = "Small Intelligence", + ["targetType"] = "Small Strength", ["targetValue"] = "", }, - ["Tattoo of the Arohongui Warmonger"] = { - ["MaximumConnected"] = 100, + ["Tattoo of the Rongokurai Makanga"] = { + ["MaximumConnected"] = 1, ["MinimumConnected"] = 0, - ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/ArohonguiTribePassiveBG.png", - ["dn"] = "Tattoo of the Arohongui Warmonger", - ["icon"] = "Art/2DArt/SkillIcons/passives/colddamage.png", - ["id"] = "Arohongui4", + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/RongokuraiTribePassiveBG.png", + ["dn"] = "Tattoo of the Rongokurai Makanga", + ["icon"] = "Art/2DArt/SkillIcons/passives/dmgreduction.png", + ["id"] = "Rongokurai7", ["isTattoo"] = true, ["ks"] = false, - ["legacy"] = false, ["m"] = false, ["not"] = false, - ["overrideType"] = "ArohonguiTattoo", + ["overrideType"] = "RongokuraiTattoo", + ["reminderText"] = { + [1] = "Requires that no more than 1 adjacent Passive Skills to be allocated", + }, ["sd"] = { - [1] = "5% chance to Freeze", + [1] = "8% chance to Defend with 200% of Armour", }, ["stats"] = { - ["base_chance_to_freeze_%"] = { + ["chance_to_double_armour_effect_on_hit_%"] = { ["fmt"] = "d", - ["max"] = 5, - ["min"] = 5, + ["max"] = 8, + ["min"] = 8, }, }, - ["targetType"] = "Small Intelligence", + ["targetType"] = "Small Strength", ["targetValue"] = "", }, - ["Tattoo of the Arohongui Warrior"] = { + ["Tattoo of the Rongokurai Turtle"] = { ["MaximumConnected"] = 100, ["MinimumConnected"] = 0, - ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/ArohonguiTribePassiveBG.png", - ["dn"] = "Tattoo of the Arohongui Warrior", - ["icon"] = "Art/2DArt/SkillIcons/passives/colddamage.png", - ["id"] = "Arohongui3", + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/RongokuraiTribePassiveBG.png", + ["dn"] = "Tattoo of the Rongokurai Turtle", + ["icon"] = "Art/2DArt/SkillIcons/passives/dmgreduction.png", + ["id"] = "Rongokurai4", ["isTattoo"] = true, ["ks"] = false, - ["legacy"] = false, ["m"] = false, ["not"] = false, - ["overrideType"] = "ArohonguiTattoo", + ["overrideType"] = "RongokuraiTattoo", ["sd"] = { - [1] = "5% increased Cold Damage", + [1] = "You take 5% reduced Extra Damage from Critical Strikes", }, ["stats"] = { - ["cold_damage_+%"] = { + ["base_self_critical_strike_multiplier_-%"] = { ["fmt"] = "d", ["max"] = 5, ["min"] = 5, }, }, - ["targetType"] = "Small Dexterity", + ["targetType"] = "Small Intelligence", ["targetValue"] = "", }, - ["Tattoo of the Hinekora Deathwarden"] = { + ["Tattoo of the Rongokurai Warrior"] = { ["MaximumConnected"] = 100, ["MinimumConnected"] = 0, - ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/HinekoraTribePassiveBG.png", - ["dn"] = "Tattoo of the Hinekora Deathwarden", - ["icon"] = "Art/2DArt/SkillIcons/passives/CursemitigationclusterNode.png", - ["id"] = "Hinekora2", + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/RongokuraiTribePassiveBG.png", + ["dn"] = "Tattoo of the Rongokurai Warrior", + ["icon"] = "Art/2DArt/SkillIcons/passives/dmgreduction.png", + ["id"] = "Rongokurai1", ["isTattoo"] = true, ["ks"] = false, - ["legacy"] = false, ["m"] = false, ["not"] = false, - ["overrideType"] = "HinekoraTattoo", + ["overrideType"] = "RongokuraiTattoo", ["sd"] = { - [1] = "6% reduced Effect of Curses on you", + [1] = "6% increased Armour", }, ["stats"] = { - ["curse_effect_on_self_+%"] = { + ["physical_damage_reduction_rating_+%"] = { ["fmt"] = "d", ["max"] = 6, ["min"] = 6, }, }, - ["targetType"] = "Small Intelligence", + ["targetType"] = "Small Strength", ["targetValue"] = "", }, - ["Tattoo of the Hinekora Makanga"] = { + ["Tattoo of the Tasalio Bladedancer"] = { ["MaximumConnected"] = 100, - ["MinimumConnected"] = 7, - ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/HinekoraTribePassiveBG.png", - ["dn"] = "Tattoo of the Hinekora Makanga", - ["icon"] = "Art/2DArt/SkillIcons/passives/CurseEffectNode.png", - ["id"] = "Hinekora7", + ["MinimumConnected"] = 0, + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/TasalioTribePassiveBG.png", + ["dn"] = "Tattoo of the Tasalio Bladedancer", + ["icon"] = "Art/2DArt/SkillIcons/passives/StanceSmallPassive.png", + ["id"] = "Tasalio1", ["isTattoo"] = true, ["ks"] = false, - ["legacy"] = true, ["m"] = false, ["not"] = false, - ["overrideType"] = "HinekoraTattoo", - ["reminderText"] = { - [1] = "Requires at least 7 adjacent Passive Skills to be allocated", - }, + ["overrideType"] = "TasalioTattoo", ["sd"] = { - [1] = "8% increased Effect of your Curses", + [1] = "Attacks have 5% chance to Maim on Hit", }, ["stats"] = { - ["curse_effect_+%"] = { + ["maim_on_hit_%"] = { ["fmt"] = "d", - ["max"] = 8, - ["min"] = 8, + ["max"] = 5, + ["min"] = 5, }, }, - ["targetType"] = "Small Intelligence", + ["targetType"] = "Small Strength", ["targetValue"] = "", }, - ["Tattoo of the Hinekora Shaman"] = { + ["Tattoo of the Tasalio Makanga"] = { ["MaximumConnected"] = 100, - ["MinimumConnected"] = 0, - ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/HinekoraTribePassiveBG.png", - ["dn"] = "Tattoo of the Hinekora Shaman", - ["icon"] = "Art/2DArt/SkillIcons/passives/mana.png", - ["id"] = "Hinekora3", + ["MinimumConnected"] = 7, + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/TasalioTribePassiveBG.png", + ["dn"] = "Tattoo of the Tasalio Makanga", + ["icon"] = "Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.png", + ["id"] = "Tasalio7", ["isTattoo"] = true, ["ks"] = false, - ["legacy"] = false, ["m"] = false, ["not"] = false, - ["overrideType"] = "HinekoraTattoo", + ["overrideType"] = "TasalioTattoo", + ["reminderText"] = { + [1] = "Requires at least 7 adjacent Passive Skills to be allocated", + }, ["sd"] = { - [1] = "8% increased Mana Regeneration Rate", + [1] = "8% increased Cooldown Recovery Rate", }, ["stats"] = { - ["mana_regeneration_rate_+%"] = { + ["base_cooldown_speed_+%"] = { ["fmt"] = "d", ["max"] = 8, ["min"] = 8, @@ -3210,50 +9028,48 @@ return { ["targetType"] = "Small Intelligence", ["targetValue"] = "", }, - ["Tattoo of the Hinekora Storyteller"] = { + ["Tattoo of the Tasalio Scout"] = { ["MaximumConnected"] = 100, ["MinimumConnected"] = 0, - ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/HinekoraTribePassiveBG.png", - ["dn"] = "Tattoo of the Hinekora Storyteller", - ["icon"] = "Art/2DArt/SkillIcons/passives/skillduration.png", - ["id"] = "Hinekora4", + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/TasalioTribePassiveBG.png", + ["dn"] = "Tattoo of the Tasalio Scout", + ["icon"] = "Art/2DArt/SkillIcons/passives/MarkNode.png", + ["id"] = "Tasalio5", ["isTattoo"] = true, ["ks"] = false, - ["legacy"] = false, ["m"] = false, ["not"] = false, - ["overrideType"] = "HinekoraTattoo", + ["overrideType"] = "TasalioTattoo", ["sd"] = { - [1] = "+3% to Chaos Resistance", + [1] = "4% increased Effect of your Marks", }, ["stats"] = { - ["base_chaos_damage_resistance_%"] = { + ["mark_skills_curse_effect_+%"] = { ["fmt"] = "d", - ["max"] = 3, - ["min"] = 3, + ["max"] = 4, + ["min"] = 4, }, }, - ["targetType"] = "Small Intelligence", + ["targetType"] = "Small Dexterity", ["targetValue"] = "", }, - ["Tattoo of the Hinekora Warmonger"] = { + ["Tattoo of the Tasalio Shaman"] = { ["MaximumConnected"] = 100, ["MinimumConnected"] = 0, - ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/HinekoraTribePassiveBG.png", - ["dn"] = "Tattoo of the Hinekora Warmonger", - ["icon"] = "Art/2DArt/SkillIcons/passives/minionlife.png", - ["id"] = "Hinekora5", + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/TasalioTribePassiveBG.png", + ["dn"] = "Tattoo of the Tasalio Shaman", + ["icon"] = "Art/2DArt/SkillIcons/passives/CurseCastSpeed.png", + ["id"] = "Tasalio3", ["isTattoo"] = true, ["ks"] = false, - ["legacy"] = false, ["m"] = false, ["not"] = false, - ["overrideType"] = "HinekoraTattoo", + ["overrideType"] = "TasalioTattoo", ["sd"] = { - [1] = "Minions have 5% increased maximum Life", + [1] = "5% chance to Hinder Enemies on Hit with Spells", }, ["stats"] = { - ["minion_maximum_life_+%"] = { + ["spells_chance_to_hinder_on_hit_%"] = { ["fmt"] = "d", ["max"] = 5, ["min"] = 5, @@ -3262,342 +9078,329 @@ return { ["targetType"] = "Small Intelligence", ["targetValue"] = "", }, - ["Tattoo of the Hinekora Warrior"] = { + ["Tattoo of the Tasalio Tideshifter"] = { ["MaximumConnected"] = 100, ["MinimumConnected"] = 0, - ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/HinekoraTribePassiveBG.png", - ["dn"] = "Tattoo of the Hinekora Warrior", - ["icon"] = "Art/2DArt/SkillIcons/passives/energyshield.png", - ["id"] = "Hinekora1", + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/TasalioTribePassiveBG.png", + ["dn"] = "Tattoo of the Tasalio Tideshifter", + ["icon"] = "Art/2DArt/SkillIcons/passives/stundex.png", + ["id"] = "Tasalio2", ["isTattoo"] = true, ["ks"] = false, - ["legacy"] = false, ["m"] = false, ["not"] = false, - ["overrideType"] = "HinekoraTattoo", + ["overrideType"] = "TasalioTattoo", ["sd"] = { - [1] = "3% increased maximum Energy Shield", + [1] = "10% chance to Avoid being Stunned", }, ["stats"] = { - ["maximum_energy_shield_+%"] = { + ["base_avoid_stun_%"] = { ["fmt"] = "d", - ["max"] = 3, - ["min"] = 3, + ["max"] = 10, + ["min"] = 10, }, }, - ["targetType"] = "Small Intelligence", + ["targetType"] = "Small Dexterity", ["targetValue"] = "", }, - ["Tattoo of the Kitava Blood Drinker"] = { + ["Tattoo of the Tasalio Warrior"] = { ["MaximumConnected"] = 100, ["MinimumConnected"] = 0, - ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KitavaTribePassiveBG.png", - ["dn"] = "Tattoo of the Kitava Blood Drinker", - ["icon"] = "Art/2DArt/SkillIcons/passives/lifegainpertarget.png", - ["id"] = "Kitava1", + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/TasalioTribePassiveBG.png", + ["dn"] = "Tattoo of the Tasalio Warrior", + ["icon"] = "Art/2DArt/SkillIcons/passives/AttackBlindNode.png", + ["id"] = "Tasalio4", ["isTattoo"] = true, ["ks"] = false, - ["legacy"] = false, ["m"] = false, ["not"] = false, - ["overrideType"] = "KitavaTattoo", + ["overrideType"] = "TasalioTattoo", ["sd"] = { - [1] = "0.5% of Attack Damage Leeched as Life", + [1] = "5% chance to Blind Enemies on Hit with Attacks", }, ["stats"] = { - ["base_life_leech_from_attack_damage_permyriad"] = { - ["fmt"] = "g", - ["max"] = 0.5, - ["min"] = 0.5, + ["attacks_chance_to_blind_on_hit_%"] = { + ["fmt"] = "d", + ["max"] = 5, + ["min"] = 5, }, }, - ["targetType"] = "Small Strength", + ["targetType"] = "Small Dexterity", ["targetValue"] = "", }, - ["Tattoo of the Kitava Heart Eater"] = { + ["Tattoo of the Tawhoa Herbalist"] = { ["MaximumConnected"] = 100, ["MinimumConnected"] = 0, - ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KitavaTribePassiveBG.png", - ["dn"] = "Tattoo of the Kitava Heart Eater", - ["icon"] = "Art/2DArt/SkillIcons/passives/lifegainpertarget.png", - ["id"] = "Kitava4", + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/TawhoaTribePassiveBG.png", + ["dn"] = "Tattoo of the Tawhoa Herbalist", + ["icon"] = "Art/2DArt/SkillIcons/passives/flaskdex.png", + ["id"] = "Tawhoa4", ["isTattoo"] = true, ["ks"] = false, - ["legacy"] = false, ["m"] = false, ["not"] = false, - ["overrideType"] = "KitavaTattoo", + ["overrideType"] = "TawhoaTattoo", ["sd"] = { - [1] = "Killing Blows have 4% chance to Consume corpses to recover 10% of Maximum Life", + [1] = "4% increased Flask Effect Duration", }, ["stats"] = { - ["killing_blow_consumes_corpse_restore_10%_life_chance_%"] = { + ["flask_duration_+%"] = { ["fmt"] = "d", ["max"] = 4, ["min"] = 4, }, }, - ["targetType"] = "Small Intelligence", + ["targetType"] = "Small Dexterity", ["targetValue"] = "", }, - ["Tattoo of the Kitava Makanga"] = { + ["Tattoo of the Tawhoa Makanga"] = { ["MaximumConnected"] = 100, ["MinimumConnected"] = 7, - ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KitavaTribePassiveBG.png", - ["dn"] = "Tattoo of the Kitava Makanga", - ["icon"] = "Art/2DArt/SkillIcons/passives/lifegainpertarget.png", - ["id"] = "Kitava7", + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/TawhoaTribePassiveBG.png", + ["dn"] = "Tattoo of the Tawhoa Makanga", + ["icon"] = "Art/2DArt/SkillIcons/passives/flaskdex.png", + ["id"] = "Tawhoa7", ["isTattoo"] = true, ["ks"] = false, - ["legacy"] = true, ["m"] = false, ["not"] = false, - ["overrideType"] = "KitavaTattoo", + ["overrideType"] = "TawhoaTattoo", ["reminderText"] = { [1] = "Requires at least 7 adjacent Passive Skills to be allocated", }, ["sd"] = { - [1] = "80% increased Maximum total Life Recovery per second from Leech", + [1] = "Flasks applied to you have 8% increased Effect", }, ["stats"] = { - ["maximum_life_leech_rate_+%"] = { + ["flask_effect_+%"] = { ["fmt"] = "d", - ["max"] = 80, - ["min"] = 80, + ["max"] = 8, + ["min"] = 8, }, }, - ["targetType"] = "Small Strength", + ["targetType"] = "Small Dexterity", ["targetValue"] = "", }, - ["Tattoo of the Kitava Rebel"] = { + ["Tattoo of the Tawhoa Naturalist"] = { ["MaximumConnected"] = 100, ["MinimumConnected"] = 0, - ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KitavaTribePassiveBG.png", - ["dn"] = "Tattoo of the Kitava Rebel", - ["icon"] = "Art/2DArt/SkillIcons/passives/Blood2.png", - ["id"] = "Kitava2", + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/TawhoaTribePassiveBG.png", + ["dn"] = "Tattoo of the Tawhoa Naturalist", + ["icon"] = "Art/2DArt/SkillIcons/passives/flaskstr.png", + ["id"] = "Tawhoa1", ["isTattoo"] = true, ["ks"] = false, - ["legacy"] = false, ["m"] = false, ["not"] = false, - ["overrideType"] = "KitavaTattoo", + ["overrideType"] = "TawhoaTattoo", ["sd"] = { - [1] = "10% chance to Avoid Bleeding", + [1] = "8% increased Life Recovery from Flasks", }, ["stats"] = { - ["base_avoid_bleed_%"] = { + ["flask_life_to_recover_+%"] = { ["fmt"] = "d", - ["max"] = 10, - ["min"] = 10, + ["max"] = 8, + ["min"] = 8, }, }, - ["targetType"] = "Small Strength", + ["targetType"] = "Small Dexterity", ["targetValue"] = "", }, - ["Tattoo of the Kitava Shaman"] = { + ["Tattoo of the Tawhoa Scout"] = { ["MaximumConnected"] = 100, ["MinimumConnected"] = 0, - ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KitavaTribePassiveBG.png", - ["dn"] = "Tattoo of the Kitava Shaman", - ["icon"] = "Art/2DArt/SkillIcons/passives/SkillscostingLifenode.png", - ["id"] = "Kitava5", + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/TawhoaTribePassiveBG.png", + ["dn"] = "Tattoo of the Tawhoa Scout", + ["icon"] = "Art/2DArt/SkillIcons/passives/Poison.png", + ["id"] = "Tawhoa2", ["isTattoo"] = true, ["ks"] = false, - ["legacy"] = false, ["m"] = false, ["not"] = false, - ["overrideType"] = "KitavaTattoo", + ["overrideType"] = "TawhoaTattoo", ["sd"] = { - [1] = "Attacks have 5% chance to cause Bleeding", + [1] = "10% chance to Avoid being Poisoned", }, ["stats"] = { - ["bleed_on_hit_with_attacks_%"] = { + ["base_avoid_poison_%"] = { ["fmt"] = "d", - ["max"] = 5, - ["min"] = 5, + ["max"] = 10, + ["min"] = 10, }, }, - ["targetType"] = "Small Strength", + ["targetType"] = "Small Dexterity", ["targetValue"] = "", }, - ["Tattoo of the Kitava Warrior"] = { + ["Tattoo of the Tawhoa Shaman"] = { ["MaximumConnected"] = 100, ["MinimumConnected"] = 0, - ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KitavaTribePassiveBG.png", - ["dn"] = "Tattoo of the Kitava Warrior", - ["icon"] = "Art/2DArt/SkillIcons/passives/damage.png", - ["id"] = "Kitava3", + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/TawhoaTribePassiveBG.png", + ["dn"] = "Tattoo of the Tawhoa Shaman", + ["icon"] = "Art/2DArt/SkillIcons/passives/LifeRecoupNode.png", + ["id"] = "Tawhoa5", ["isTattoo"] = true, ["ks"] = false, - ["legacy"] = false, ["m"] = false, ["not"] = false, - ["overrideType"] = "KitavaTattoo", + ["overrideType"] = "TawhoaTattoo", ["sd"] = { - [1] = "5% increased Physical Damage", + [1] = "5% chance to Poison on Hit", }, ["stats"] = { - ["physical_damage_+%"] = { + ["base_chance_to_poison_on_hit_%"] = { ["fmt"] = "d", ["max"] = 5, ["min"] = 5, }, }, - ["targetType"] = "Small Strength", + ["targetType"] = "Small Intelligence", ["targetValue"] = "", }, - ["Tattoo of the Ngamahu Firewalker"] = { + ["Tattoo of the Tawhoa Warrior"] = { ["MaximumConnected"] = 100, ["MinimumConnected"] = 0, - ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/NgamahuTribePassiveBG.png", - ["dn"] = "Tattoo of the Ngamahu Firewalker", - ["icon"] = "Art/2DArt/SkillIcons/passives/FireResistNode.png", - ["id"] = "Ngamahu1", + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/TawhoaTribePassiveBG.png", + ["dn"] = "Tattoo of the Tawhoa Warrior", + ["icon"] = "Art/2DArt/SkillIcons/passives/Poison.png", + ["id"] = "Tawhoa3", ["isTattoo"] = true, ["ks"] = false, - ["legacy"] = false, ["m"] = false, ["not"] = false, - ["overrideType"] = "NgamahuTattoo", + ["overrideType"] = "TawhoaTattoo", ["sd"] = { - [1] = "+6% to Fire Resistance", + [1] = "5% increased Chaos Damage", }, ["stats"] = { - ["base_fire_damage_resistance_%"] = { + ["chaos_damage_+%"] = { ["fmt"] = "d", - ["max"] = 6, - ["min"] = 6, + ["max"] = 5, + ["min"] = 5, }, }, - ["targetType"] = "Small Strength", + ["targetType"] = "Small Intelligence", ["targetValue"] = "", }, - ["Tattoo of the Ngamahu Makanga"] = { - ["MaximumConnected"] = 1, + ["Tattoo of the Tukohama Brawler"] = { + ["MaximumConnected"] = 100, ["MinimumConnected"] = 0, - ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/NgamahuTribePassiveBG.png", - ["dn"] = "Tattoo of the Ngamahu Makanga", - ["icon"] = "Art/2DArt/SkillIcons/passives/FireResistNode.png", - ["id"] = "Ngamahu7", + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/TukohamaTribePassiveBG.png", + ["dn"] = "Tattoo of the Tukohama Brawler", + ["icon"] = "Art/2DArt/SkillIcons/passives/knockback.png", + ["id"] = "Tukohama3", ["isTattoo"] = true, ["ks"] = false, - ["legacy"] = true, ["m"] = false, ["not"] = false, - ["overrideType"] = "NgamahuTattoo", - ["reminderText"] = { - [1] = "Requires that no more than 1 adjacent Passive Skills to be allocated", - }, + ["overrideType"] = "TukohamaTattoo", ["sd"] = { - [1] = "+1% to maximum Fire Resistance", + [1] = "10% chance to Knock Enemies Back on hit", }, ["stats"] = { - ["base_maximum_fire_damage_resistance_%"] = { + ["base_global_chance_to_knockback_%"] = { ["fmt"] = "d", - ["max"] = 1, - ["min"] = 1, + ["max"] = 10, + ["min"] = 10, }, }, ["targetType"] = "Small Strength", ["targetValue"] = "", }, - ["Tattoo of the Ngamahu Shaman"] = { + ["Tattoo of the Tukohama Makanga"] = { ["MaximumConnected"] = 100, - ["MinimumConnected"] = 0, - ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/NgamahuTribePassiveBG.png", - ["dn"] = "Tattoo of the Ngamahu Shaman", - ["icon"] = "Art/2DArt/SkillIcons/passives/FireResistNode.png", - ["id"] = "Ngamahu2", + ["MinimumConnected"] = 7, + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/TukohamaTribePassiveBG.png", + ["dn"] = "Tattoo of the Tukohama Makanga", + ["icon"] = "Art/2DArt/SkillIcons/passives/lifepercentage.png", + ["id"] = "Tukohama7", ["isTattoo"] = true, ["ks"] = false, - ["legacy"] = false, ["m"] = false, ["not"] = false, - ["overrideType"] = "NgamahuTattoo", + ["overrideType"] = "TukohamaTattoo", + ["reminderText"] = { + [1] = "Requires at least 7 adjacent Passive Skills to be allocated", + }, ["sd"] = { - [1] = "10% reduced Ignite Duration on you", + [1] = "16% increased Life Regeneration rate", }, ["stats"] = { - ["base_self_ignite_duration_-%"] = { + ["life_regeneration_rate_+%"] = { ["fmt"] = "d", - ["max"] = 10, - ["min"] = 10, + ["max"] = 16, + ["min"] = 16, }, }, ["targetType"] = "Small Strength", ["targetValue"] = "", }, - ["Tattoo of the Ngamahu Warmonger"] = { + ["Tattoo of the Tukohama Shaman"] = { ["MaximumConnected"] = 100, ["MinimumConnected"] = 0, - ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/NgamahuTribePassiveBG.png", - ["dn"] = "Tattoo of the Ngamahu Warmonger", - ["icon"] = "Art/2DArt/SkillIcons/passives/firedamage.png", - ["id"] = "Ngamahu4", + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/TukohamaTribePassiveBG.png", + ["dn"] = "Tattoo of the Tukohama Shaman", + ["icon"] = "Art/2DArt/SkillIcons/passives/lifepercentage.png", + ["id"] = "Tukohama1", ["isTattoo"] = true, ["ks"] = false, - ["legacy"] = false, ["m"] = false, ["not"] = false, - ["overrideType"] = "NgamahuTattoo", + ["overrideType"] = "TukohamaTattoo", ["sd"] = { - [1] = "5% chance to Ignite", + [1] = "Regenerate 0.3% of Life per second", }, ["stats"] = { - ["base_chance_to_ignite_%"] = { - ["fmt"] = "d", - ["max"] = 5, - ["min"] = 5, + ["life_regeneration_rate_per_minute_%"] = { + ["fmt"] = "g", + ["max"] = 0.3, + ["min"] = 0.3, }, }, ["targetType"] = "Small Strength", ["targetValue"] = "", }, - ["Tattoo of the Ngamahu Warrior"] = { + ["Tattoo of the Tukohama Warcaller"] = { ["MaximumConnected"] = 100, ["MinimumConnected"] = 0, - ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/NgamahuTribePassiveBG.png", - ["dn"] = "Tattoo of the Ngamahu Warrior", - ["icon"] = "Art/2DArt/SkillIcons/passives/firedamage.png", - ["id"] = "Ngamahu3", + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/TukohamaTribePassiveBG.png", + ["dn"] = "Tattoo of the Tukohama Warcaller", + ["icon"] = "Art/2DArt/SkillIcons/passives/WarCryCooldown.png", + ["id"] = "Tukohama5", ["isTattoo"] = true, ["ks"] = false, - ["legacy"] = false, ["m"] = false, ["not"] = false, - ["overrideType"] = "NgamahuTattoo", + ["overrideType"] = "TukohamaTattoo", ["sd"] = { - [1] = "5% increased Fire Damage", + [1] = "8% increased Warcry Cooldown Recovery Rate", }, ["stats"] = { - ["fire_damage_+%"] = { + ["warcry_cooldown_speed_+%"] = { ["fmt"] = "d", - ["max"] = 5, - ["min"] = 5, + ["max"] = 8, + ["min"] = 8, }, }, ["targetType"] = "Small Strength", ["targetValue"] = "", }, - ["Tattoo of the Ngamahu Woodcarver"] = { + ["Tattoo of the Tukohama Warmonger"] = { ["MaximumConnected"] = 100, ["MinimumConnected"] = 0, - ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/NgamahuTribePassiveBG.png", - ["dn"] = "Tattoo of the Ngamahu Woodcarver", - ["icon"] = "Art/2DArt/SkillIcons/passives/totemandbrandlife.png", - ["id"] = "Ngamahu5", + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/TukohamaTribePassiveBG.png", + ["dn"] = "Tattoo of the Tukohama Warmonger", + ["icon"] = "Art/2DArt/SkillIcons/passives/StancesNode.png", + ["id"] = "Tukohama4", ["isTattoo"] = true, ["ks"] = false, - ["legacy"] = false, ["m"] = false, ["not"] = false, - ["overrideType"] = "NgamahuTattoo", + ["overrideType"] = "TukohamaTattoo", ["sd"] = { - [1] = "5% increased Totem Life", + [1] = "5% increased Melee Damage", }, ["stats"] = { - ["totem_life_+%"] = { + ["melee_damage_+%"] = { ["fmt"] = "d", ["max"] = 5, ["min"] = 5, @@ -3606,1164 +9409,1483 @@ return { ["targetType"] = "Small Strength", ["targetValue"] = "", }, - ["Tattoo of the Ramako Archer"] = { + ["Tattoo of the Tukohama Warrior"] = { ["MaximumConnected"] = 100, ["MinimumConnected"] = 0, - ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/RamakoTribePassiveBG.png", - ["dn"] = "Tattoo of the Ramako Archer", - ["icon"] = "Art/2DArt/SkillIcons/passives/accuracy.png", - ["id"] = "Ramako2", + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/TukohamaTribePassiveBG.png", + ["dn"] = "Tattoo of the Tukohama Warrior", + ["icon"] = "Art/2DArt/SkillIcons/passives/FortifyNode.png", + ["id"] = "Tukohama2", ["isTattoo"] = true, ["ks"] = false, - ["legacy"] = false, ["m"] = false, ["not"] = false, - ["overrideType"] = "RamakoTattoo", + ["overrideType"] = "TukohamaTattoo", ["sd"] = { - [1] = "5% increased Global Accuracy Rating", + [1] = "Melee Hits which Stun have 5% chance to Fortify", }, ["stats"] = { - ["accuracy_rating_+%"] = { + ["chance_to_fortify_on_melee_stun_%"] = { ["fmt"] = "d", ["max"] = 5, ["min"] = 5, }, }, - ["targetType"] = "Small Dexterity", + ["targetType"] = "Small Strength", ["targetValue"] = "", }, - ["Tattoo of the Ramako Fleetfoot"] = { - ["MaximumConnected"] = 100, + ["Tattoo of the Valako Makanga"] = { + ["MaximumConnected"] = 1, ["MinimumConnected"] = 0, - ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/RamakoTribePassiveBG.png", - ["dn"] = "Tattoo of the Ramako Fleetfoot", - ["icon"] = "Art/2DArt/SkillIcons/passives/MovementSpeedandEvasionPassive.png", - ["id"] = "Ramako4", + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/ValakoTribePassiveBG.png", + ["dn"] = "Tattoo of the Valako Makanga", + ["icon"] = "Art/2DArt/SkillIcons/passives/LightningResistNode.png", + ["id"] = "Valako7", ["isTattoo"] = true, ["ks"] = false, - ["legacy"] = false, ["m"] = false, ["not"] = false, - ["overrideType"] = "RamakoTattoo", + ["overrideType"] = "ValakoTattoo", + ["reminderText"] = { + [1] = "Requires that no more than 1 adjacent Passive Skills to be allocated", + }, ["sd"] = { - [1] = "2% increased Movement Speed", + [1] = "+1% to maximum Lightning Resistance", }, ["stats"] = { - ["base_movement_velocity_+%"] = { + ["base_maximum_lightning_damage_resistance_%"] = { ["fmt"] = "d", - ["max"] = 2, - ["min"] = 2, + ["max"] = 1, + ["min"] = 1, }, }, - ["targetType"] = "Small Dexterity", + ["targetType"] = "Small Intelligence", ["targetValue"] = "", }, - ["Tattoo of the Ramako Makanga"] = { + ["Tattoo of the Valako Scout"] = { ["MaximumConnected"] = 100, - ["MinimumConnected"] = 7, - ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/RamakoTribePassiveBG.png", - ["dn"] = "Tattoo of the Ramako Makanga", - ["icon"] = "Art/2DArt/SkillIcons/passives/IncreasedProjectileSpeedNode.png", - ["id"] = "Ramako7", + ["MinimumConnected"] = 0, + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/ValakoTribePassiveBG.png", + ["dn"] = "Tattoo of the Valako Scout", + ["icon"] = "Art/2DArt/SkillIcons/passives/LightningResistNode.png", + ["id"] = "Valako2", ["isTattoo"] = true, ["ks"] = false, - ["legacy"] = true, ["m"] = false, ["not"] = false, - ["overrideType"] = "RamakoTattoo", - ["reminderText"] = { - [1] = "Requires at least 7 adjacent Passive Skills to be allocated", - }, + ["overrideType"] = "ValakoTattoo", ["sd"] = { - [1] = "Skills fire an additional Projectile", + [1] = "10% reduced Effect of Shock on you", }, ["stats"] = { - ["number_of_additional_projectiles"] = { + ["shocked_effect_on_self_+%"] = { ["fmt"] = "d", - ["max"] = 1, - ["min"] = 1, + ["max"] = 10, + ["min"] = 10, }, }, - ["targetType"] = "Small Dexterity", + ["targetType"] = "Small Intelligence", ["targetValue"] = "", }, - ["Tattoo of the Ramako Scout"] = { + ["Tattoo of the Valako Shaman"] = { ["MaximumConnected"] = 100, ["MinimumConnected"] = 0, - ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/RamakoTribePassiveBG.png", - ["dn"] = "Tattoo of the Ramako Scout", - ["icon"] = "Art/2DArt/SkillIcons/passives/evade.png", - ["id"] = "Ramako1", + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/ValakoTribePassiveBG.png", + ["dn"] = "Tattoo of the Valako Shaman", + ["icon"] = "Art/2DArt/SkillIcons/passives/ShieldNodeOffensive.png", + ["id"] = "Valako5", ["isTattoo"] = true, ["ks"] = false, - ["legacy"] = false, ["m"] = false, ["not"] = false, - ["overrideType"] = "RamakoTattoo", + ["overrideType"] = "ValakoTattoo", ["sd"] = { - [1] = "6% increased Evasion Rating", + [1] = "5% chance to Shock", }, ["stats"] = { - ["evasion_rating_+%"] = { + ["base_chance_to_shock_%"] = { ["fmt"] = "d", - ["max"] = 6, - ["min"] = 6, + ["max"] = 5, + ["min"] = 5, }, }, - ["targetType"] = "Small Dexterity", + ["targetType"] = "Small Intelligence", ["targetValue"] = "", }, - ["Tattoo of the Ramako Shaman"] = { + ["Tattoo of the Valako Shieldbearer"] = { ["MaximumConnected"] = 100, ["MinimumConnected"] = 0, - ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/RamakoTribePassiveBG.png", - ["dn"] = "Tattoo of the Ramako Shaman", - ["icon"] = "Art/2DArt/SkillIcons/passives/SpellSuppresionNode.png", - ["id"] = "Ramako5", + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/ValakoTribePassiveBG.png", + ["dn"] = "Tattoo of the Valako Shieldbearer", + ["icon"] = "Art/2DArt/SkillIcons/passives/ShieldAttackDamage.png", + ["id"] = "Valako4", ["isTattoo"] = true, ["ks"] = false, - ["legacy"] = false, ["m"] = false, ["not"] = false, - ["overrideType"] = "RamakoTattoo", + ["overrideType"] = "ValakoTattoo", ["sd"] = { - [1] = "+2% chance to Suppress Spell Damage", + [1] = "+1% Chance to Block Attack Damage", }, ["stats"] = { - ["base_spell_suppression_chance_%"] = { + ["additional_block_%"] = { ["fmt"] = "d", - ["max"] = 2, - ["min"] = 2, + ["max"] = 1, + ["min"] = 1, }, }, - ["targetType"] = "Small Dexterity", + ["targetType"] = "Small Strength", ["targetValue"] = "", }, - ["Tattoo of the Ramako Sniper"] = { + ["Tattoo of the Valako Stormrider"] = { ["MaximumConnected"] = 100, ["MinimumConnected"] = 0, - ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/RamakoTribePassiveBG.png", - ["dn"] = "Tattoo of the Ramako Sniper", - ["icon"] = "Art/2DArt/SkillIcons/passives/projectilespeed.png", - ["id"] = "Ramako3", + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/ValakoTribePassiveBG.png", + ["dn"] = "Tattoo of the Valako Stormrider", + ["icon"] = "Art/2DArt/SkillIcons/passives/LightningResistNode.png", + ["id"] = "Valako1", ["isTattoo"] = true, ["ks"] = false, - ["legacy"] = false, ["m"] = false, ["not"] = false, - ["overrideType"] = "RamakoTattoo", + ["overrideType"] = "ValakoTattoo", ["sd"] = { - [1] = "5% increased Projectile Speed", + [1] = "+6% to Lightning Resistance", }, ["stats"] = { - ["base_projectile_speed_+%"] = { + ["base_lightning_damage_resistance_%"] = { ["fmt"] = "d", - ["max"] = 5, - ["min"] = 5, + ["max"] = 6, + ["min"] = 6, }, }, - ["targetType"] = "Small Dexterity", + ["targetType"] = "Small Intelligence", ["targetValue"] = "", }, - ["Tattoo of the Rongokurai Brute"] = { + ["Tattoo of the Valako Warrior"] = { ["MaximumConnected"] = 100, ["MinimumConnected"] = 0, - ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/RongokuraiTribePassiveBG.png", - ["dn"] = "Tattoo of the Rongokurai Brute", - ["icon"] = "Art/2DArt/SkillIcons/passives/stunstr.png", - ["id"] = "Rongokurai2", + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/ValakoTribePassiveBG.png", + ["dn"] = "Tattoo of the Valako Warrior", + ["icon"] = "Art/2DArt/SkillIcons/passives/lightningint.png", + ["id"] = "Valako3", ["isTattoo"] = true, ["ks"] = false, - ["legacy"] = false, ["m"] = false, ["not"] = false, - ["overrideType"] = "RongokuraiTattoo", + ["overrideType"] = "ValakoTattoo", ["sd"] = { - [1] = "10% increased Stun Threshold", + [1] = "5% increased Lightning Damage", }, ["stats"] = { - ["stun_threshold_+%"] = { + ["lightning_damage_+%"] = { ["fmt"] = "d", - ["max"] = 10, - ["min"] = 10, + ["max"] = 5, + ["min"] = 5, }, }, - ["targetType"] = "Small Strength", + ["targetType"] = "Small Intelligence", ["targetValue"] = "", }, - ["Tattoo of the Rongokurai Goliath"] = { + ["Tawhoa, Forest's Strength"] = { ["MaximumConnected"] = 100, ["MinimumConnected"] = 0, - ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/RongokuraiTribePassiveBG.png", - ["dn"] = "Tattoo of the Rongokurai Goliath", - ["icon"] = "Art/2DArt/SkillIcons/passives/stunstr.png", - ["id"] = "Rongokurai3", + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", + ["dn"] = "Tawhoa, Forest's Strength", + ["icon"] = "Art/2DArt/SkillIcons/passives/Chieftain/TawhoaForestsStrength.png", + ["id"] = "AscendancyChieftan12", ["isTattoo"] = true, ["ks"] = false, - ["legacy"] = false, ["m"] = false, - ["not"] = false, - ["overrideType"] = "RongokuraiTattoo", + ["not"] = true, + ["overrideType"] = "AscendancyTattooMarauder", ["sd"] = { - [1] = "10% increased Stun Duration on Enemies", + [1] = "Trigger Level 20 Tawhoa's Chosen when you Attack with", + [2] = "a Non-Vaal Slam or Strike Skill near an Enemy", + [3] = "Limited to 1 Ascendancy Tattoo", }, ["stats"] = { - ["base_stun_duration_+%"] = { + ["local_display_grants_skill_mirage_chieftain"] = { ["fmt"] = "d", - ["max"] = 10, - ["min"] = 10, + ["index"] = 1, + ["max"] = 20, + ["min"] = 20, + ["statOrder"] = 714, }, }, - ["targetType"] = "Small Strength", + ["targetType"] = "Ascendancy Notable", ["targetValue"] = "", }, - ["Tattoo of the Rongokurai Guard"] = { + ["The Agnostic"] = { ["MaximumConnected"] = 100, ["MinimumConnected"] = 0, - ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/RongokuraiTribePassiveBG.png", - ["dn"] = "Tattoo of the Rongokurai Guard", - ["icon"] = "Art/2DArt/SkillIcons/passives/dmgreduction.png", - ["id"] = "Rongokurai5", + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", + ["dn"] = "The Agnostic", + ["icon"] = "Art/2DArt/SkillIcons/passives/MiracleMaker.png", + ["id"] = "the_agnostic_keystone2695", ["isTattoo"] = true, - ["ks"] = false, - ["legacy"] = false, + ["ks"] = true, ["m"] = false, ["not"] = false, - ["overrideType"] = "RongokuraiTattoo", + ["overrideType"] = "KeystoneTattoo", ["sd"] = { - [1] = "Guard Skills have 6% increased Duration", + [1] = "Removes all Energy Shield", + [2] = "While not on Full Life, Sacrifice 20% of Mana per Second to Recover that much Life", + [3] = "Limited to 1 Keystone Tattoo", }, ["stats"] = { - ["guard_skill_effect_duration_+%"] = { + ["keystone_miracle_of_thaumaturgy"] = { ["fmt"] = "d", - ["max"] = 6, - ["min"] = 6, + ["index"] = 1, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 10952, }, }, - ["targetType"] = "Small Strength", + ["targetType"] = "Keystone", ["targetValue"] = "", }, - ["Tattoo of the Rongokurai Makanga"] = { - ["MaximumConnected"] = 1, + ["The Impaler"] = { + ["MaximumConnected"] = 100, ["MinimumConnected"] = 0, - ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/RongokuraiTribePassiveBG.png", - ["dn"] = "Tattoo of the Rongokurai Makanga", - ["icon"] = "Art/2DArt/SkillIcons/passives/dmgreduction.png", - ["id"] = "Rongokurai7", + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", + ["dn"] = "The Impaler", + ["icon"] = "Art/2DArt/SkillIcons/passives/ImpaleKeystone.png", + ["id"] = "impaler_keystone2780", ["isTattoo"] = true, - ["ks"] = false, - ["legacy"] = true, + ["ks"] = true, ["m"] = false, ["not"] = false, - ["overrideType"] = "RongokuraiTattoo", - ["reminderText"] = { - [1] = "Requires that no more than 1 adjacent Passive Skills to be allocated", - }, + ["overrideType"] = "KeystoneTattoo", ["sd"] = { - [1] = "8% chance to Defend with 200% of Armour", + [1] = "When your Hits Impale Enemies, also Impale other Enemies near them", + [2] = "Inflict 5 additional Impales on Enemies you Impale", + [3] = "For 5 seconds after you Impale Enemies, they cannot be Impaled again, and Impales cannot be Called from them", + [4] = "Limited to 1 Keystone Tattoo", }, ["stats"] = { - ["chance_to_double_armour_effect_on_hit_%"] = { + ["keystone_impale"] = { ["fmt"] = "d", - ["max"] = 8, - ["min"] = 8, + ["index"] = 1, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 10946, }, }, - ["targetType"] = "Small Strength", + ["targetType"] = "Keystone", ["targetValue"] = "", }, - ["Tattoo of the Rongokurai Turtle"] = { + ["Time of Need"] = { ["MaximumConnected"] = 100, ["MinimumConnected"] = 0, - ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/RongokuraiTribePassiveBG.png", - ["dn"] = "Tattoo of the Rongokurai Turtle", - ["icon"] = "Art/2DArt/SkillIcons/passives/dmgreduction.png", - ["id"] = "Rongokurai4", + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", + ["dn"] = "Time of Need", + ["icon"] = "Art/2DArt/SkillIcons/passives/Guardian/TimeOfNeed.png", + ["id"] = "AscendancyGuardian2", ["isTattoo"] = true, ["ks"] = false, - ["legacy"] = false, ["m"] = false, - ["not"] = false, - ["overrideType"] = "RongokuraiTattoo", + ["not"] = true, + ["overrideType"] = "AscendancyTattooTemplar", ["sd"] = { - [1] = "You take 5% reduced Extra Damage from Critical Strikes", + [1] = "Every 4 seconds, remove Curses and Ailments from you", + [2] = "Every 4 seconds, Regenerate 100% of Life over one second", + [3] = "Limited to 1 Ascendancy Tattoo", }, ["stats"] = { - ["base_self_critical_strike_multiplier_-%"] = { + ["guardian_gain_life_regeneration_per_minute_%_for_1_second_every_10_seconds"] = { + ["fmt"] = "g", + ["index"] = 1, + ["max"] = 100, + ["min"] = 100, + ["statOrder"] = 3786, + }, + ["guardian_remove_curses_and_status_ailments_every_10_seconds"] = { ["fmt"] = "d", - ["max"] = 5, - ["min"] = 5, + ["index"] = 2, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 3785, }, }, - ["targetType"] = "Small Intelligence", + ["targetType"] = "Ascendancy Notable", ["targetValue"] = "", }, - ["Tattoo of the Rongokurai Warrior"] = { + ["Toxic Delivery"] = { ["MaximumConnected"] = 100, ["MinimumConnected"] = 0, - ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/RongokuraiTribePassiveBG.png", - ["dn"] = "Tattoo of the Rongokurai Warrior", - ["icon"] = "Art/2DArt/SkillIcons/passives/dmgreduction.png", - ["id"] = "Rongokurai1", + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", + ["dn"] = "Toxic Delivery", + ["icon"] = "Art/2DArt/SkillIcons/passives/Assassin/ToxicDelivery.png", + ["id"] = "AscendancyAssassin10", ["isTattoo"] = true, ["ks"] = false, - ["legacy"] = false, ["m"] = false, - ["not"] = false, - ["overrideType"] = "RongokuraiTattoo", + ["not"] = true, + ["overrideType"] = "AscendancyTattooShadow", ["sd"] = { - [1] = "6% increased Armour", + [1] = "Poison you inflict with Critical Strikes deals 20% more Damage", + [2] = "5% increased Poison Duration for each Poison you have inflicted Recently, up", + [3] = "to a maximum of 100%", + [4] = "Recover 0.5% of Life per Poison affecting Enemies you Kill", + [5] = "Limited to 1 Ascendancy Tattoo", }, ["stats"] = { - ["physical_damage_reduction_rating_+%"] = { + ["poison_duration_+%_per_poison_applied_recently"] = { ["fmt"] = "d", - ["max"] = 6, - ["min"] = 6, + ["index"] = 2, + ["max"] = 5, + ["min"] = 5, + ["statOrder"] = 9687, + }, + ["poison_from_critical_strikes_damage_+%_final"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 20, + ["min"] = 20, + ["statOrder"] = 4247, + }, + ["recover_permyriad_maximum_life_per_poison_on_enemy_on_kill"] = { + ["fmt"] = "g", + ["index"] = 3, + ["max"] = 0.5, + ["min"] = 0.5, + ["statOrder"] = 9873, }, }, - ["targetType"] = "Small Strength", + ["targetType"] = "Ascendancy Notable", ["targetValue"] = "", }, - ["Tattoo of the Tasalio Bladedancer"] = { + ["Trickster"] = { ["MaximumConnected"] = 100, ["MinimumConnected"] = 0, - ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/TasalioTribePassiveBG.png", - ["dn"] = "Tattoo of the Tasalio Bladedancer", - ["icon"] = "Art/2DArt/SkillIcons/passives/StanceSmallPassive.png", - ["id"] = "Tasalio1", + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", + ["dn"] = "Trickster", + ["icon"] = "Art/2DArt/SkillIcons/passives/Ascendants/Trickster.png", + ["id"] = "AscendancyAscendant47", ["isTattoo"] = true, ["ks"] = false, - ["legacy"] = false, ["m"] = false, - ["not"] = false, - ["overrideType"] = "TasalioTattoo", + ["not"] = true, + ["overrideType"] = "AscendancyTattooScion", ["sd"] = { - [1] = "Attacks have 5% chance to Maim on Hit", + [1] = "Prevent +6% of Suppressed Spell Damage while on Full Energy Shield", + [2] = "2% more Damage for each different type of Mastery you have Allocated", + [3] = "2% of Damage Leeched as Energy Shield", + [4] = "Limited to 1 Ascendancy Tattoo", }, ["stats"] = { - ["maim_on_hit_%"] = { + ["energy_shield_leech_from_any_damage_permyriad"] = { + ["fmt"] = "g", + ["index"] = 1, + ["max"] = 2, + ["min"] = 2, + ["statOrder"] = 1721, + }, + ["spell_damage_%_suppressed_while_on_full_energy_shield"] = { ["fmt"] = "d", - ["max"] = 5, - ["min"] = 5, + ["index"] = 3, + ["max"] = 6, + ["min"] = 6, + ["statOrder"] = 1146, + }, + ["trickster_damage_+%_final_per_different_mastery"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 2, + ["min"] = 2, + ["statOrder"] = 1646, }, }, - ["targetType"] = "Small Strength", + ["targetType"] = "Ascendancy Notable", ["targetValue"] = "", }, - ["Tattoo of the Tasalio Makanga"] = { + ["Tukohama, War's Herald"] = { ["MaximumConnected"] = 100, - ["MinimumConnected"] = 7, - ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/TasalioTribePassiveBG.png", - ["dn"] = "Tattoo of the Tasalio Makanga", - ["icon"] = "Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.png", - ["id"] = "Tasalio7", + ["MinimumConnected"] = 0, + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", + ["dn"] = "Tukohama, War's Herald", + ["icon"] = "Art/2DArt/SkillIcons/passives/Chieftain/TukomahaWarsHerald.png", + ["id"] = "AscendancyChieftan11", ["isTattoo"] = true, ["ks"] = false, - ["legacy"] = true, ["m"] = false, - ["not"] = false, - ["overrideType"] = "TasalioTattoo", - ["reminderText"] = { - [1] = "Requires at least 7 adjacent Passive Skills to be allocated", - }, + ["not"] = true, + ["overrideType"] = "AscendancyTattooMarauder", ["sd"] = { - [1] = "8% increased Cooldown Recovery Rate", + [1] = "Skills from Equipped Body Armour are Supported by Level 30 Ancestral Call", + [2] = "Skills from Equipped Body Armour are Supported by Level 20 Fist of War", + [3] = "Limited to 1 Ascendancy Tattoo", }, ["stats"] = { - ["base_cooldown_speed_+%"] = { + ["chieftain_body_armour_supported_by_level_x_ancestral_call"] = { ["fmt"] = "d", - ["max"] = 8, - ["min"] = 8, + ["index"] = 1, + ["max"] = 30, + ["min"] = 30, + ["statOrder"] = 618, + }, + ["chieftain_body_armour_supported_by_level_x_fist_of_war"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 20, + ["min"] = 20, + ["statOrder"] = 619, }, }, - ["targetType"] = "Small Intelligence", + ["targetType"] = "Ascendancy Notable", ["targetValue"] = "", }, - ["Tattoo of the Tasalio Scout"] = { + ["Unbreakable"] = { ["MaximumConnected"] = 100, ["MinimumConnected"] = 0, - ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/TasalioTribePassiveBG.png", - ["dn"] = "Tattoo of the Tasalio Scout", - ["icon"] = "Art/2DArt/SkillIcons/passives/MarkNode.png", - ["id"] = "Tasalio5", + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", + ["dn"] = "Unbreakable", + ["icon"] = "Art/2DArt/SkillIcons/passives/Juggernaut/JuggernautArmourNotable.png", + ["id"] = "AscendancyJuggernaut8", ["isTattoo"] = true, ["ks"] = false, - ["legacy"] = false, ["m"] = false, - ["not"] = false, - ["overrideType"] = "TasalioTattoo", + ["not"] = true, + ["overrideType"] = "AscendancyTattooMarauder", ["sd"] = { - [1] = "4% increased Effect of your Marks", + [1] = "Armour from Equipped Body Armour is doubled", + [2] = "15% of Armour also applies to Chaos Damage taken from Hits", + [3] = "Limited to 1 Ascendancy Tattoo", }, ["stats"] = { - ["mark_skills_curse_effect_+%"] = { + ["base_armour_%_applies_to_chaos_damage"] = { ["fmt"] = "d", - ["max"] = 4, - ["min"] = 4, + ["index"] = 2, + ["max"] = 15, + ["min"] = 15, + ["statOrder"] = 4987, + }, + ["damage_reduction_rating_from_body_armour_doubled"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 3337, }, }, - ["targetType"] = "Small Dexterity", + ["targetType"] = "Ascendancy Notable", ["targetValue"] = "", }, - ["Tattoo of the Tasalio Shaman"] = { + ["Undeniable"] = { ["MaximumConnected"] = 100, ["MinimumConnected"] = 0, - ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/TasalioTribePassiveBG.png", - ["dn"] = "Tattoo of the Tasalio Shaman", - ["icon"] = "Art/2DArt/SkillIcons/passives/CurseCastSpeed.png", - ["id"] = "Tasalio3", + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", + ["dn"] = "Undeniable", + ["icon"] = "Art/2DArt/SkillIcons/passives/Juggernaut/Undeniable.png", + ["id"] = "AscendancyJuggernaut10", ["isTattoo"] = true, ["ks"] = false, - ["legacy"] = false, ["m"] = false, - ["not"] = false, - ["overrideType"] = "TasalioTattoo", + ["not"] = true, + ["overrideType"] = "AscendancyTattooMarauder", ["sd"] = { - [1] = "5% chance to Hinder Enemies on Hit with Spells", + [1] = "+500 to Accuracy Rating", + [2] = "1% increased Attack Speed per 150 Accuracy Rating", + [3] = "Gain Accuracy Rating equal to twice your Strength", + [4] = "Limited to 1 Ascendancy Tattoo", }, ["stats"] = { - ["spells_chance_to_hinder_on_hit_%"] = { + ["accuracy_rating"] = { ["fmt"] = "d", - ["max"] = 5, - ["min"] = 5, + ["index"] = 1, + ["max"] = 500, + ["min"] = 500, + ["statOrder"] = 1433, + }, + ["attack_speed_+%_per_200_accuracy_rating"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 4238, + }, + ["gain_accuracy_rating_equal_to_2_times_strength"] = { + ["fmt"] = "d", + ["index"] = 3, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 6711, }, }, - ["targetType"] = "Small Intelligence", + ["targetType"] = "Ascendancy Notable", ["targetValue"] = "", }, - ["Tattoo of the Tasalio Tideshifter"] = { + ["Unflinching"] = { ["MaximumConnected"] = 100, ["MinimumConnected"] = 0, - ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/TasalioTribePassiveBG.png", - ["dn"] = "Tattoo of the Tasalio Tideshifter", - ["icon"] = "Art/2DArt/SkillIcons/passives/stundex.png", - ["id"] = "Tasalio2", + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", + ["dn"] = "Unflinching", + ["icon"] = "Art/2DArt/SkillIcons/passives/Juggernaut/Unflinching.png", + ["id"] = "AscendancyJuggernaut11", ["isTattoo"] = true, ["ks"] = false, - ["legacy"] = false, ["m"] = false, - ["not"] = false, - ["overrideType"] = "TasalioTattoo", + ["not"] = true, + ["overrideType"] = "AscendancyTattooMarauder", ["sd"] = { - [1] = "10% chance to Avoid being Stunned", + [1] = "30% chance to gain an Endurance Charge when you are Hit", + [2] = "25% chance that if you would gain Endurance Charges, you instead gain up to maximum Endurance Charges", + [3] = "Gain 1 Endurance Charge every second if you've been Hit Recently", + [4] = "+1 to Maximum Endurance Charges", + [5] = "Limited to 1 Ascendancy Tattoo", }, ["stats"] = { - ["base_avoid_stun_%"] = { + ["chance_to_gain_endurance_charge_when_hit_%"] = { ["fmt"] = "d", - ["max"] = 10, - ["min"] = 10, + ["index"] = 1, + ["max"] = 30, + ["min"] = 30, + ["statOrder"] = 2751, + }, + ["gain_endurance_charge_per_second_if_have_been_hit_recently"] = { + ["fmt"] = "d", + ["index"] = 4, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 6747, + }, + ["gain_maximum_endurance_charges_on_endurance_charge_gained_%_chance"] = { + ["fmt"] = "d", + ["index"] = 3, + ["max"] = 25, + ["min"] = 25, + ["statOrder"] = 4239, + }, + ["max_endurance_charges"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 10870, }, }, - ["targetType"] = "Small Dexterity", + ["targetType"] = "Ascendancy Notable", ["targetValue"] = "", }, - ["Tattoo of the Tasalio Warrior"] = { + ["Unholy Authority"] = { ["MaximumConnected"] = 100, ["MinimumConnected"] = 0, - ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/TasalioTribePassiveBG.png", - ["dn"] = "Tattoo of the Tasalio Warrior", - ["icon"] = "Art/2DArt/SkillIcons/passives/AttackBlindNode.png", - ["id"] = "Tasalio4", + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", + ["dn"] = "Unholy Authority", + ["icon"] = "Art/2DArt/SkillIcons/passives/Occultist/FatefulEchoes.png", + ["id"] = "AscendancyOccultist8", ["isTattoo"] = true, ["ks"] = false, - ["legacy"] = false, ["m"] = false, - ["not"] = false, - ["overrideType"] = "TasalioTattoo", + ["not"] = true, + ["overrideType"] = "AscendancyTattooWitch", ["sd"] = { - [1] = "5% chance to Blind Enemies on Hit with Attacks", + [1] = "You can apply an additional Curse", + [2] = "Your Hexes can affect Hexproof Enemies", + [3] = "Limited to 1 Ascendancy Tattoo", }, ["stats"] = { - ["attacks_chance_to_blind_on_hit_%"] = { + ["ignore_hexproof"] = { ["fmt"] = "d", - ["max"] = 5, - ["min"] = 5, + ["index"] = 2, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 2600, + }, + ["number_of_additional_curses_allowed"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 2168, }, }, - ["targetType"] = "Small Dexterity", + ["targetType"] = "Ascendancy Notable", ["targetValue"] = "", }, - ["Tattoo of the Tawhoa Herbalist"] = { + ["Unnatural Strength"] = { ["MaximumConnected"] = 100, ["MinimumConnected"] = 0, - ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/TawhoaTribePassiveBG.png", - ["dn"] = "Tattoo of the Tawhoa Herbalist", - ["icon"] = "Art/2DArt/SkillIcons/passives/flaskdex.png", - ["id"] = "Tawhoa4", + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", + ["dn"] = "Unnatural Strength", + ["icon"] = "Art/2DArt/SkillIcons/passives/Necromancer/OffensiveMinionNotable.png", + ["id"] = "AscendancyNecromancer8", ["isTattoo"] = true, ["ks"] = false, - ["legacy"] = false, ["m"] = false, - ["not"] = false, - ["overrideType"] = "TawhoaTattoo", + ["not"] = true, + ["overrideType"] = "AscendancyTattooWitch", ["sd"] = { - [1] = "4% increased Flask Effect Duration", + [1] = "Minions have Unholy Might", + [2] = "Limited to 1 Ascendancy Tattoo", }, ["stats"] = { - ["flask_duration_+%"] = { + ["minion_has_unholy_might"] = { ["fmt"] = "d", - ["max"] = 4, - ["min"] = 4, + ["index"] = 1, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 9309, }, }, - ["targetType"] = "Small Dexterity", + ["targetType"] = "Ascendancy Notable", ["targetValue"] = "", }, - ["Tattoo of the Tawhoa Makanga"] = { + ["Unrelenting"] = { ["MaximumConnected"] = 100, - ["MinimumConnected"] = 7, - ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/TawhoaTribePassiveBG.png", - ["dn"] = "Tattoo of the Tawhoa Makanga", - ["icon"] = "Art/2DArt/SkillIcons/passives/flaskdex.png", - ["id"] = "Tawhoa7", + ["MinimumConnected"] = 0, + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", + ["dn"] = "Unrelenting", + ["icon"] = "Art/2DArt/SkillIcons/passives/Juggernaut/Unrelenting.png", + ["id"] = "AscendancyJuggernaut12", ["isTattoo"] = true, ["ks"] = false, - ["legacy"] = true, ["m"] = false, - ["not"] = false, - ["overrideType"] = "TawhoaTattoo", - ["reminderText"] = { - [1] = "Requires at least 7 adjacent Passive Skills to be allocated", - }, + ["not"] = true, + ["overrideType"] = "AscendancyTattooMarauder", ["sd"] = { - [1] = "Flasks applied to you have 8% increased Effect", + [1] = "1% additional Elemental Damage Reduction per Endurance Charge", + [2] = "1% additional Physical Damage Reduction per Endurance Charge", + [3] = "Limited to 1 Ascendancy Tattoo", }, ["stats"] = { - ["flask_effect_+%"] = { + ["elemental_damage_reduction_%_per_endurance_charge"] = { ["fmt"] = "d", - ["max"] = 8, - ["min"] = 8, + ["index"] = 2, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 2275, + }, + ["physical_damage_reduction_%_per_endurance_charge"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 2276, }, }, - ["targetType"] = "Small Dexterity", + ["targetType"] = "Ascendancy Notable", ["targetValue"] = "", }, - ["Tattoo of the Tawhoa Naturalist"] = { + ["Unstable Infusion"] = { ["MaximumConnected"] = 100, ["MinimumConnected"] = 0, - ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/TawhoaTribePassiveBG.png", - ["dn"] = "Tattoo of the Tawhoa Naturalist", - ["icon"] = "Art/2DArt/SkillIcons/passives/flaskstr.png", - ["id"] = "Tawhoa1", + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", + ["dn"] = "Unstable Infusion", + ["icon"] = "Art/2DArt/SkillIcons/passives/Assassin/UnstableInfusion.png", + ["id"] = "AscendancyAssassin2", ["isTattoo"] = true, ["ks"] = false, - ["legacy"] = false, ["m"] = false, - ["not"] = false, - ["overrideType"] = "TawhoaTattoo", + ["not"] = true, + ["overrideType"] = "AscendancyTattooShadow", ["sd"] = { - [1] = "8% increased Life Recovery from Flasks", + [1] = "15% chance to gain a Power Charge on Critical Strike", + [2] = "30% chance to gain a Power Charge on Non-Critical Strike", + [3] = "+1 to Maximum Power Charges", + [4] = "Limited to 1 Ascendancy Tattoo", }, ["stats"] = { - ["flask_life_to_recover_+%"] = { + ["add_power_charge_on_critical_strike_%"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 15, + ["min"] = 15, + ["statOrder"] = 1830, + }, + ["gain_power_charge_on_non_critical_strike_%"] = { ["fmt"] = "d", - ["max"] = 8, - ["min"] = 8, + ["index"] = 1, + ["max"] = 30, + ["min"] = 30, + ["statOrder"] = 3405, + }, + ["max_power_charges"] = { + ["fmt"] = "d", + ["index"] = 3, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 10872, }, }, - ["targetType"] = "Small Dexterity", + ["targetType"] = "Ascendancy Notable", ["targetValue"] = "", }, - ["Tattoo of the Tawhoa Scout"] = { + ["Unstoppable"] = { ["MaximumConnected"] = 100, ["MinimumConnected"] = 0, - ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/TawhoaTribePassiveBG.png", - ["dn"] = "Tattoo of the Tawhoa Scout", - ["icon"] = "Art/2DArt/SkillIcons/passives/Poison.png", - ["id"] = "Tawhoa2", + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", + ["dn"] = "Unstoppable", + ["icon"] = "Art/2DArt/SkillIcons/passives/Juggernaut/Unstoppable.png", + ["id"] = "AscendancyJuggernaut7", ["isTattoo"] = true, ["ks"] = false, - ["legacy"] = false, ["m"] = false, - ["not"] = false, - ["overrideType"] = "TawhoaTattoo", + ["not"] = true, + ["overrideType"] = "AscendancyTattooMarauder", ["sd"] = { - [1] = "10% chance to Avoid being Poisoned", + [1] = "10% increased Movement Speed", + [2] = "Cannot be Stunned", + [3] = "Action Speed cannot be modified to below Base Value", + [4] = "Movement Speed cannot be modified to below Base Value", + [5] = "Limited to 1 Ascendancy Tattoo", }, ["stats"] = { - ["base_avoid_poison_%"] = { + ["action_speed_cannot_be_reduced_below_base"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 3194, + }, + ["base_cannot_be_stunned"] = { + ["fmt"] = "d", + ["index"] = 4, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 2173, + }, + ["base_movement_velocity_+%"] = { ["fmt"] = "d", + ["index"] = 3, ["max"] = 10, ["min"] = 10, + ["statOrder"] = 1798, + }, + ["movement_speed_cannot_be_reduced_below_base"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 3196, }, }, - ["targetType"] = "Small Dexterity", + ["targetType"] = "Ascendancy Notable", ["targetValue"] = "", }, - ["Tattoo of the Tawhoa Shaman"] = { + ["Unstoppable Hero"] = { ["MaximumConnected"] = 100, ["MinimumConnected"] = 0, - ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/TawhoaTribePassiveBG.png", - ["dn"] = "Tattoo of the Tawhoa Shaman", - ["icon"] = "Art/2DArt/SkillIcons/passives/LifeRecoupNode.png", - ["id"] = "Tawhoa5", + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", + ["dn"] = "Unstoppable Hero", + ["icon"] = "Art/2DArt/SkillIcons/passives/Champion/Unstopable.png", + ["id"] = "AscendancyChampion8", ["isTattoo"] = true, ["ks"] = false, - ["legacy"] = false, ["m"] = false, - ["not"] = false, - ["overrideType"] = "TawhoaTattoo", + ["not"] = true, + ["overrideType"] = "AscendancyTattooDuelist", ["sd"] = { - [1] = "5% chance to Poison on Hit", + [1] = "3% more Armour and Evasion Rating per Fortification above 20", + [2] = "3% increased Attack Speed per Fortification above 20", + [3] = "Limited to 1 Ascendancy Tattoo", }, ["stats"] = { - ["base_chance_to_poison_on_hit_%"] = { + ["armour_evasion_rating_+%_final_per_fortification_above_20"] = { ["fmt"] = "d", - ["max"] = 5, - ["min"] = 5, + ["index"] = 2, + ["max"] = 3, + ["min"] = 3, + ["statOrder"] = 10913, + }, + ["attack_speed_+%_per_fortification_above_20"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 3, + ["min"] = 3, + ["statOrder"] = 10914, }, }, - ["targetType"] = "Small Intelligence", + ["targetType"] = "Ascendancy Notable", ["targetValue"] = "", }, - ["Tattoo of the Tawhoa Warrior"] = { + ["Untiring"] = { ["MaximumConnected"] = 100, ["MinimumConnected"] = 0, - ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/TawhoaTribePassiveBG.png", - ["dn"] = "Tattoo of the Tawhoa Warrior", - ["icon"] = "Art/2DArt/SkillIcons/passives/Poison.png", - ["id"] = "Tawhoa3", + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", + ["dn"] = "Untiring", + ["icon"] = "Art/2DArt/SkillIcons/passives/Juggernaut/Unbreakable.png", + ["id"] = "AscendancyJuggernaut13", ["isTattoo"] = true, ["ks"] = false, - ["legacy"] = false, ["m"] = false, - ["not"] = false, - ["overrideType"] = "TawhoaTattoo", + ["not"] = true, + ["overrideType"] = "AscendancyTattooMarauder", ["sd"] = { - [1] = "5% increased Chaos Damage", + [1] = "40% increased Life Regeneration rate", + [2] = "1.50% of Physical Damage prevented from Hits in the past", + [3] = "10 seconds is Regenerated as Life per second", + [4] = "Limited to 1 Ascendancy Tattoo", }, ["stats"] = { - ["chaos_damage_+%"] = { + ["gain_%_total_phys_damage_prevented_in_the_past_10_sec_as_life_regen_per_sec"] = { + ["fmt"] = ".2f", + ["index"] = 1, + ["max"] = 1.5, + ["min"] = 1.5, + ["statOrder"] = 6795, + }, + ["life_regeneration_rate_+%"] = { ["fmt"] = "d", - ["max"] = 5, - ["min"] = 5, + ["index"] = 2, + ["max"] = 40, + ["min"] = 40, + ["statOrder"] = 1577, }, }, - ["targetType"] = "Small Intelligence", + ["targetType"] = "Ascendancy Notable", ["targetValue"] = "", }, - ["Tattoo of the Tukohama Brawler"] = { + ["Unwavering Crusade"] = { ["MaximumConnected"] = 100, ["MinimumConnected"] = 0, - ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/TukohamaTribePassiveBG.png", - ["dn"] = "Tattoo of the Tukohama Brawler", - ["icon"] = "Art/2DArt/SkillIcons/passives/knockback.png", - ["id"] = "Tukohama3", + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", + ["dn"] = "Unwavering Crusade", + ["icon"] = "Art/2DArt/SkillIcons/passives/Guardian/Unwavering Crusade.png", + ["id"] = "AscendancyGuardian16", ["isTattoo"] = true, ["ks"] = false, - ["legacy"] = false, ["m"] = false, - ["not"] = false, - ["overrideType"] = "TukohamaTattoo", + ["not"] = true, + ["overrideType"] = "AscendancyTattooTemplar", ["sd"] = { - [1] = "10% chance to Knock Enemies Back on hit", + [1] = "Limited to 1 Ascendancy Tattoo", }, ["stats"] = { - ["base_global_chance_to_knockback_%"] = { - ["fmt"] = "d", - ["max"] = 10, - ["min"] = 10, - }, }, - ["targetType"] = "Small Strength", + ["targetType"] = "Ascendancy Notable", ["targetValue"] = "", }, - ["Tattoo of the Tukohama Makanga"] = { + ["Unwavering Faith"] = { ["MaximumConnected"] = 100, - ["MinimumConnected"] = 7, - ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/TukohamaTribePassiveBG.png", - ["dn"] = "Tattoo of the Tukohama Makanga", - ["icon"] = "Art/2DArt/SkillIcons/passives/lifepercentage.png", - ["id"] = "Tukohama7", + ["MinimumConnected"] = 0, + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", + ["dn"] = "Unwavering Faith", + ["icon"] = "Art/2DArt/SkillIcons/passives/Guardian/UnwaveringFaith.png", + ["id"] = "AscendancyGuardian12", ["isTattoo"] = true, ["ks"] = false, - ["legacy"] = true, ["m"] = false, - ["not"] = false, - ["overrideType"] = "TukohamaTattoo", - ["reminderText"] = { - [1] = "Requires at least 7 adjacent Passive Skills to be allocated", - }, + ["not"] = true, + ["overrideType"] = "AscendancyTattooTemplar", ["sd"] = { - [1] = "16% increased Life Regeneration rate", + [1] = "50% increased Reservation Efficiency of Skills", + [2] = "Limited to 1 Ascendancy Tattoo", }, ["stats"] = { - ["life_regeneration_rate_+%"] = { + ["base_reservation_efficiency_+%"] = { ["fmt"] = "d", - ["max"] = 16, - ["min"] = 16, + ["index"] = 1, + ["max"] = 50, + ["min"] = 50, + ["statOrder"] = 2230, }, }, - ["targetType"] = "Small Strength", + ["targetType"] = "Ascendancy Notable", ["targetValue"] = "", }, - ["Tattoo of the Tukohama Shaman"] = { + ["Unwavering Stance"] = { ["MaximumConnected"] = 100, ["MinimumConnected"] = 0, - ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/TukohamaTribePassiveBG.png", - ["dn"] = "Tattoo of the Tukohama Shaman", - ["icon"] = "Art/2DArt/SkillIcons/passives/lifepercentage.png", - ["id"] = "Tukohama1", + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", + ["dn"] = "Unwavering Stance", + ["icon"] = "Art/2DArt/SkillIcons/passives/KeystoneUnwaveringStance.png", + ["id"] = "unwavering_stance1139", ["isTattoo"] = true, - ["ks"] = false, - ["legacy"] = false, + ["ks"] = true, ["m"] = false, ["not"] = false, - ["overrideType"] = "TukohamaTattoo", + ["overrideType"] = "KeystoneTattoo", ["sd"] = { - [1] = "Regenerate 0.3% of Life per second", + [1] = "Cannot Evade enemy Attacks", + [2] = "Cannot be Stunned", + [3] = "Limited to 1 Keystone Tattoo", }, ["stats"] = { - ["life_regeneration_rate_per_minute_%"] = { - ["fmt"] = "g", - ["max"] = 0.3, - ["min"] = 0.3, + ["keystone_unwavering_stance"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 10902, }, }, - ["targetType"] = "Small Strength", + ["targetType"] = "Keystone", ["targetValue"] = "", }, - ["Tattoo of the Tukohama Warcaller"] = { + ["Unyielding"] = { ["MaximumConnected"] = 100, ["MinimumConnected"] = 0, - ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/TukohamaTribePassiveBG.png", - ["dn"] = "Tattoo of the Tukohama Warcaller", - ["icon"] = "Art/2DArt/SkillIcons/passives/WarCryCooldown.png", - ["id"] = "Tukohama5", + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", + ["dn"] = "Unyielding", + ["icon"] = "Art/2DArt/SkillIcons/passives/Juggernaut/Unyielding.png", + ["id"] = "AscendancyJuggernaut9", ["isTattoo"] = true, ["ks"] = false, - ["legacy"] = false, ["m"] = false, - ["not"] = false, - ["overrideType"] = "TukohamaTattoo", + ["not"] = true, + ["overrideType"] = "AscendancyTattooMarauder", ["sd"] = { - [1] = "8% increased Warcry Cooldown Recovery Rate", + [1] = "8% increased Damage per Endurance Charge", + [2] = "6% increased Area of Effect per Endurance Charge", + [3] = "25% chance to gain an Endurance Charge when you Stun an Enemy", + [4] = "10% increased Stun Duration on Enemies per Endurance Charge", + [5] = "Limited to 1 Ascendancy Tattoo", }, ["stats"] = { - ["warcry_cooldown_speed_+%"] = { + ["area_of_effect_+%_per_endurance_charge"] = { + ["fmt"] = "d", + ["index"] = 4, + ["max"] = 6, + ["min"] = 6, + ["statOrder"] = 4733, + }, + ["chance_to_gain_endurance_charge_when_you_stun_enemy_%"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 25, + ["min"] = 25, + ["statOrder"] = 5687, + }, + ["damage_+%_per_endurance_charge"] = { ["fmt"] = "d", + ["index"] = 1, ["max"] = 8, ["min"] = 8, + ["statOrder"] = 3199, + }, + ["stun_duration_+%_per_endurance_charge"] = { + ["fmt"] = "d", + ["index"] = 3, + ["max"] = 10, + ["min"] = 10, + ["statOrder"] = 10264, }, }, - ["targetType"] = "Small Strength", + ["targetType"] = "Ascendancy Notable", ["targetValue"] = "", }, - ["Tattoo of the Tukohama Warmonger"] = { + ["Vaal Pact"] = { ["MaximumConnected"] = 100, ["MinimumConnected"] = 0, - ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/TukohamaTribePassiveBG.png", - ["dn"] = "Tattoo of the Tukohama Warmonger", - ["icon"] = "Art/2DArt/SkillIcons/passives/StancesNode.png", - ["id"] = "Tukohama4", + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", + ["dn"] = "Vaal Pact", + ["icon"] = "Art/2DArt/SkillIcons/passives/vaalpact.png", + ["id"] = "vaal_pact1420", ["isTattoo"] = true, - ["ks"] = false, - ["legacy"] = false, + ["ks"] = true, ["m"] = false, ["not"] = false, - ["overrideType"] = "TukohamaTattoo", + ["overrideType"] = "KeystoneTattoo", ["sd"] = { - [1] = "5% increased Melee Damage", + [1] = "Life Leech from Melee Damage is Instant", + [2] = "Cannot Recover Life other than from Leech", + [3] = "Limited to 1 Keystone Tattoo", }, ["stats"] = { - ["melee_damage_+%"] = { + ["keystone_vaal_pact"] = { ["fmt"] = "d", - ["max"] = 5, - ["min"] = 5, + ["index"] = 1, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 10894, }, }, - ["targetType"] = "Small Strength", + ["targetType"] = "Keystone", ["targetValue"] = "", }, - ["Tattoo of the Tukohama Warrior"] = { + ["Valako, Storm's Embrace"] = { ["MaximumConnected"] = 100, ["MinimumConnected"] = 0, - ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/TukohamaTribePassiveBG.png", - ["dn"] = "Tattoo of the Tukohama Warrior", - ["icon"] = "Art/2DArt/SkillIcons/passives/FortifyNode.png", - ["id"] = "Tukohama2", + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", + ["dn"] = "Valako, Storm's Embrace", + ["icon"] = "Art/2DArt/SkillIcons/passives/Chieftain/ValakoStormsEmbrace.png", + ["id"] = "AscendancyChieftan16", ["isTattoo"] = true, ["ks"] = false, - ["legacy"] = false, ["m"] = false, - ["not"] = false, - ["overrideType"] = "TukohamaTattoo", + ["not"] = true, + ["overrideType"] = "AscendancyTattooMarauder", ["sd"] = { - [1] = "Melee Hits which Stun have 5% chance to Fortify", + [1] = "Modifiers to Maximum Fire Resistance also apply to Maximum Cold and Lightning Resistances", + [2] = "Limited to 1 Ascendancy Tattoo", }, ["stats"] = { - ["chance_to_fortify_on_melee_stun_%"] = { + ["modifiers_to_maximum_fire_resistance_apply_to_maximum_cold_and_lightning_resistance"] = { ["fmt"] = "d", - ["max"] = 5, - ["min"] = 5, + ["index"] = 1, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 9386, }, }, - ["targetType"] = "Small Strength", + ["targetType"] = "Ascendancy Notable", ["targetValue"] = "", }, - ["Tattoo of the Valako Makanga"] = { - ["MaximumConnected"] = 1, + ["Versatile Combatant"] = { + ["MaximumConnected"] = 100, ["MinimumConnected"] = 0, - ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/ValakoTribePassiveBG.png", - ["dn"] = "Tattoo of the Valako Makanga", - ["icon"] = "Art/2DArt/SkillIcons/passives/LightningResistNode.png", - ["id"] = "Valako7", + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", + ["dn"] = "Versatile Combatant", + ["icon"] = "Art/2DArt/SkillIcons/passives/VersatileCombatant.png", + ["id"] = "versatile_combatant_keystone2854", ["isTattoo"] = true, - ["ks"] = false, - ["legacy"] = true, + ["ks"] = true, ["m"] = false, ["not"] = false, - ["overrideType"] = "ValakoTattoo", - ["reminderText"] = { - [1] = "Requires that no more than 1 adjacent Passive Skills to be allocated", - }, + ["overrideType"] = "KeystoneTattoo", ["sd"] = { - [1] = "+1% to maximum Lightning Resistance", + [1] = "-10% to maximum Chance to Block Attack Damage", + [2] = "-10% to maximum Chance to Block Spell Damage", + [3] = "+2% Chance to Block Spell Damage for each 1% Overcapped Chance to Block Attack Damage", + [4] = "Limited to 1 Keystone Tattoo", }, ["stats"] = { - ["base_maximum_lightning_damage_resistance_%"] = { + ["keystone_versatile_combatant"] = { ["fmt"] = "d", + ["index"] = 1, ["max"] = 1, ["min"] = 1, + ["statOrder"] = 10974, }, }, - ["targetType"] = "Small Intelligence", + ["targetType"] = "Keystone", ["targetValue"] = "", - }, - ["Tattoo of the Valako Scout"] = { - ["MaximumConnected"] = 100, - ["MinimumConnected"] = 0, - ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/ValakoTribePassiveBG.png", - ["dn"] = "Tattoo of the Valako Scout", - ["icon"] = "Art/2DArt/SkillIcons/passives/LightningResistNode.png", - ["id"] = "Valako2", + }, + ["Vile Bastion"] = { + ["MaximumConnected"] = 100, + ["MinimumConnected"] = 0, + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", + ["dn"] = "Vile Bastion", + ["icon"] = "Art/2DArt/SkillIcons/passives/Occultist/SoulCatalyst.png", + ["id"] = "AscendancyOccultist10", ["isTattoo"] = true, ["ks"] = false, - ["legacy"] = false, ["m"] = false, - ["not"] = false, - ["overrideType"] = "ValakoTattoo", + ["not"] = true, + ["overrideType"] = "AscendancyTattooWitch", ["sd"] = { - [1] = "10% reduced Effect of Shock on you", + [1] = "Regenerate 100 Energy Shield per second", + [2] = "Cannot Be Stunned while you have Energy Shield", + [3] = "Maximum Energy Shield is increased by Chance to Block Spell Damage", + [4] = "Limited to 1 Ascendancy Tattoo", }, ["stats"] = { - ["shocked_effect_on_self_+%"] = { + ["base_energy_shield_regeneration_rate_per_minute"] = { + ["fmt"] = "g", + ["index"] = 3, + ["max"] = 100, + ["min"] = 100, + ["statOrder"] = 2645, + }, + ["maximum_energy_shield_increased_by_spell_block_chance"] = { ["fmt"] = "d", - ["max"] = 10, - ["min"] = 10, + ["index"] = 1, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 9135, + }, + ["occultist_immune_to_stun_while_has_energy_shield"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 3743, }, }, - ["targetType"] = "Small Intelligence", + ["targetType"] = "Ascendancy Notable", ["targetValue"] = "", }, - ["Tattoo of the Valako Shaman"] = { + ["Void Beacon"] = { ["MaximumConnected"] = 100, ["MinimumConnected"] = 0, - ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/ValakoTribePassiveBG.png", - ["dn"] = "Tattoo of the Valako Shaman", - ["icon"] = "Art/2DArt/SkillIcons/passives/ShieldNodeOffensive.png", - ["id"] = "Valako5", + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", + ["dn"] = "Void Beacon", + ["icon"] = "Art/2DArt/SkillIcons/passives/Occultist/VoidBeacon.png", + ["id"] = "AscendancyOccultist11", ["isTattoo"] = true, ["ks"] = false, - ["legacy"] = false, ["m"] = false, - ["not"] = false, - ["overrideType"] = "ValakoTattoo", + ["not"] = true, + ["overrideType"] = "AscendancyTattooWitch", ["sd"] = { - [1] = "5% chance to Shock", + [1] = "Limited to 1 Ascendancy Tattoo", }, ["stats"] = { - ["base_chance_to_shock_%"] = { - ["fmt"] = "d", - ["max"] = 5, - ["min"] = 5, - }, }, - ["targetType"] = "Small Intelligence", + ["targetType"] = "Ascendancy Notable", ["targetValue"] = "", }, - ["Tattoo of the Valako Shieldbearer"] = { + ["War Bringer"] = { ["MaximumConnected"] = 100, ["MinimumConnected"] = 0, - ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/ValakoTribePassiveBG.png", - ["dn"] = "Tattoo of the Valako Shieldbearer", - ["icon"] = "Art/2DArt/SkillIcons/passives/ShieldAttackDamage.png", - ["id"] = "Valako4", + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", + ["dn"] = "War Bringer", + ["icon"] = "Art/2DArt/SkillIcons/passives/Berserker/WarBringer.png", + ["id"] = "AscendancyBerserker7", ["isTattoo"] = true, ["ks"] = false, - ["legacy"] = false, ["m"] = false, - ["not"] = false, - ["overrideType"] = "ValakoTattoo", + ["not"] = true, + ["overrideType"] = "AscendancyTattooMarauder", ["sd"] = { - [1] = "+1% Chance to Block Attack Damage", + [1] = "Warcries Exert twice as many Attacks", + [2] = "Limited to 1 Ascendancy Tattoo", }, ["stats"] = { - ["additional_block_%"] = { + ["warcries_exert_twice_as_many_attacks"] = { ["fmt"] = "d", + ["index"] = 1, ["max"] = 1, ["min"] = 1, + ["statOrder"] = 10563, }, }, - ["targetType"] = "Small Strength", + ["targetType"] = "Ascendancy Notable", ["targetValue"] = "", }, - ["Tattoo of the Valako Stormrider"] = { + ["War of Attrition"] = { ["MaximumConnected"] = 100, ["MinimumConnected"] = 0, - ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/ValakoTribePassiveBG.png", - ["dn"] = "Tattoo of the Valako Stormrider", - ["icon"] = "Art/2DArt/SkillIcons/passives/LightningResistNode.png", - ["id"] = "Valako1", + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", + ["dn"] = "War of Attrition", + ["icon"] = "Art/2DArt/SkillIcons/passives/Gladiator/GLADBloodAndSand.png", + ["id"] = "AscendancyGladiator14", ["isTattoo"] = true, ["ks"] = false, - ["legacy"] = false, ["m"] = false, - ["not"] = false, - ["overrideType"] = "ValakoTattoo", + ["not"] = true, + ["overrideType"] = "AscendancyTattooDuelist", ["sd"] = { - [1] = "+6% to Lightning Resistance", + [1] = "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%", + [2] = "Limited to 1 Ascendancy Tattoo", }, ["stats"] = { - ["base_lightning_damage_resistance_%"] = { + ["gladiator_damage_vs_rare_unique_enemies_+%_final_per_second_in_your_presence_up_to_100%"] = { ["fmt"] = "d", - ["max"] = 6, - ["min"] = 6, + ["index"] = 1, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 6869, }, }, - ["targetType"] = "Small Intelligence", + ["targetType"] = "Ascendancy Notable", ["targetValue"] = "", }, - ["Tattoo of the Valako Warrior"] = { + ["Warden"] = { ["MaximumConnected"] = 100, ["MinimumConnected"] = 0, - ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/ValakoTribePassiveBG.png", - ["dn"] = "Tattoo of the Valako Warrior", - ["icon"] = "Art/2DArt/SkillIcons/passives/lightningint.png", - ["id"] = "Valako3", + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", + ["dn"] = "Warden", + ["icon"] = "Art/2DArt/SkillIcons/passives/Ascendants/Raider.png", + ["id"] = "AscendancyAscendant34", ["isTattoo"] = true, ["ks"] = false, - ["legacy"] = false, ["m"] = false, - ["not"] = false, - ["overrideType"] = "ValakoTattoo", + ["not"] = true, + ["overrideType"] = "AscendancyTattooScion", ["sd"] = { - [1] = "5% increased Lightning Damage", + [1] = "+20% chance to Suppress Spell Damage", + [2] = "Attack Damage Penetrates 8% of Enemy Elemental Resistances", + [3] = "You can have an additional Tincture active", + [4] = "Limited to 1 Ascendancy Tattoo", }, ["stats"] = { - ["lightning_damage_+%"] = { + ["base_attack_damage_penetrates_elemental_resist_%"] = { ["fmt"] = "d", - ["max"] = 5, - ["min"] = 5, + ["index"] = 2, + ["max"] = 8, + ["min"] = 8, + ["statOrder"] = 3558, + }, + ["base_spell_suppression_chance_%"] = { + ["fmt"] = "d", + ["index"] = 3, + ["max"] = 20, + ["min"] = 20, + ["statOrder"] = 1143, + }, + ["can_apply_additional_tincture"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 5384, }, }, - ["targetType"] = "Small Intelligence", + ["targetType"] = "Ascendancy Notable", ["targetValue"] = "", }, - ["The Agnostic"] = { + ["Weapon Master"] = { ["MaximumConnected"] = 100, ["MinimumConnected"] = 0, ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", - ["dn"] = "The Agnostic", - ["icon"] = "Art/2DArt/SkillIcons/passives/MiracleMaker.png", - ["id"] = "the_agnostic_keystone2695", + ["dn"] = "Weapon Master", + ["icon"] = "Art/2DArt/SkillIcons/passives/Gladiator/GladiatorDualWiledSwordAxeNotable.png", + ["id"] = "AscendancyGladiator9", ["isTattoo"] = true, - ["ks"] = true, + ["ks"] = false, ["m"] = false, - ["not"] = false, - ["overrideType"] = "KeystoneTattoo", + ["not"] = true, + ["overrideType"] = "AscendancyTattooDuelist", ["sd"] = { - [1] = "Removes all Energy Shield", - [2] = "While not on Full Life, Sacrifice 20% of Mana per Second to Recover that much Life", - [3] = "Limited to 1 Keystone Tattoo", + [1] = "25% more Accuracy Rating while wielding a Sword", + [2] = "20% more Area of Effect while wielding a Mace or Sceptre", + [3] = "20% more Critical Strike Chance while wielding a Dagger", + [4] = "20% of Leech is Instant while wielding a Claw", + [5] = "30% more Damage with Hits and Ailments against Enemies that are on Low Life while you are wielding an Axe", + [6] = "Limited to 1 Ascendancy Tattoo", }, ["stats"] = { - ["keystone_miracle_of_thaumaturgy"] = { + ["gladiator_accuracy_rating_+%_final_while_wielding_sword"] = { + ["fmt"] = "d", + ["index"] = 3, + ["max"] = 25, + ["min"] = 25, + ["statOrder"] = 4509, + }, + ["gladiator_area_of_effect_+%_final_while_wielding_mace"] = { ["fmt"] = "d", ["index"] = 1, - ["max"] = 1, - ["min"] = 1, - ["statOrder"] = 10952, + ["max"] = 20, + ["min"] = 20, + ["statOrder"] = 4720, + }, + ["gladiator_critical_strike_chance_+%_final_while_wielding_dagger"] = { + ["fmt"] = "d", + ["index"] = 5, + ["max"] = 20, + ["min"] = 20, + ["statOrder"] = 6867, + }, + ["gladiator_damage_+%_final_against_enemies_on_low_life_while_wielding_axe"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 30, + ["min"] = 30, + ["statOrder"] = 6871, + }, + ["leech_%_is_instant_while_wielding_claw"] = { + ["fmt"] = "d", + ["index"] = 4, + ["max"] = 20, + ["min"] = 20, + ["statOrder"] = 6870, }, }, - ["targetType"] = "Keystone", + ["targetType"] = "Ascendancy Notable", ["targetValue"] = "", }, - ["The Impaler"] = { + ["Wicked Ward"] = { ["MaximumConnected"] = 100, ["MinimumConnected"] = 0, ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", - ["dn"] = "The Impaler", - ["icon"] = "Art/2DArt/SkillIcons/passives/ImpaleKeystone.png", - ["id"] = "impaler_keystone2780", + ["dn"] = "Wicked Ward", + ["icon"] = "Art/2DArt/SkillIcons/passives/Occultist/EldrichBarrier.png", + ["id"] = "wicked_ward_keystone2342", ["isTattoo"] = true, ["ks"] = true, ["m"] = false, ["not"] = false, ["overrideType"] = "KeystoneTattoo", ["sd"] = { - [1] = "When your Hits Impale Enemies, also Impale other Enemies near them", - [2] = "Inflict 5 additional Impales on Enemies you Impale", - [3] = "For 5 seconds after you Impale Enemies, they cannot be Impaled again, and Impales cannot be Called from them", - [4] = "Limited to 1 Keystone Tattoo", + [1] = "Energy Shield Recharge is not interrupted by Damage if Recharge began Recently", + [2] = "40% less Energy Shield Recharge Rate", + [3] = "Limited to 1 Keystone Tattoo", }, ["stats"] = { - ["keystone_impale"] = { + ["keystone_wicked_ward"] = { ["fmt"] = "d", ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 10946, + ["statOrder"] = 10977, }, }, ["targetType"] = "Keystone", ["targetValue"] = "", }, - ["Unwavering Stance"] = { + ["Wind Dancer"] = { ["MaximumConnected"] = 100, ["MinimumConnected"] = 0, ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", - ["dn"] = "Unwavering Stance", - ["icon"] = "Art/2DArt/SkillIcons/passives/KeystoneUnwaveringStance.png", - ["id"] = "unwavering_stance1139", + ["dn"] = "Wind Dancer", + ["icon"] = "Art/2DArt/SkillIcons/passives/WindDancer.png", + ["id"] = "wind_dancer_keystone2694", ["isTattoo"] = true, ["ks"] = true, ["m"] = false, ["not"] = false, ["overrideType"] = "KeystoneTattoo", ["sd"] = { - [1] = "Cannot Evade enemy Attacks", - [2] = "Cannot be Stunned", - [3] = "Limited to 1 Keystone Tattoo", + [1] = "20% less Attack Damage taken if you haven't been Hit by an Attack Recently", + [2] = "10% more chance to Evade Attacks if you have been Hit by an Attack Recently", + [3] = "20% more Attack Damage taken if you have been Hit by an Attack Recently", + [4] = "Limited to 1 Keystone Tattoo", }, ["stats"] = { - ["keystone_unwavering_stance"] = { + ["keystone_wind_dancer"] = { ["fmt"] = "d", ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 10902, + ["statOrder"] = 10978, }, }, ["targetType"] = "Keystone", ["targetValue"] = "", }, - ["Vaal Pact"] = { + ["Wind Ward"] = { ["MaximumConnected"] = 100, ["MinimumConnected"] = 0, ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", - ["dn"] = "Vaal Pact", - ["icon"] = "Art/2DArt/SkillIcons/passives/vaalpact.png", - ["id"] = "vaal_pact1420", + ["dn"] = "Wind Ward", + ["icon"] = "Art/2DArt/SkillIcons/passives/ProtectiveWinds.png", + ["id"] = "AscendancyDeadeye20_", ["isTattoo"] = true, - ["ks"] = true, + ["ks"] = false, ["m"] = false, - ["not"] = false, - ["overrideType"] = "KeystoneTattoo", + ["not"] = true, + ["overrideType"] = "AscendancyTattooRanger", ["sd"] = { - [1] = "Life Leech from Melee Damage is Instant", - [2] = "Cannot Recover Life other than from Leech", - [3] = "Limited to 1 Keystone Tattoo", + [1] = "4% less Damage taken per Gale Force", + [2] = "Lose all Gale Force when Hit", + [3] = "Limited to 1 Ascendancy Tattoo", }, ["stats"] = { - ["keystone_vaal_pact"] = { + ["damage_taken_+%_final_per_gale_force"] = { ["fmt"] = "d", ["index"] = 1, + ["max"] = 4, + ["min"] = 4, + ["statOrder"] = 6115, + }, + ["lose_all_gale_force_when_hit"] = { + ["fmt"] = "d", + ["index"] = 2, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 10894, + ["statOrder"] = 8138, }, }, - ["targetType"] = "Keystone", + ["targetType"] = "Ascendancy Notable", ["targetValue"] = "", }, - ["Versatile Combatant"] = { + ["Withering Presence"] = { ["MaximumConnected"] = 100, ["MinimumConnected"] = 0, ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", - ["dn"] = "Versatile Combatant", - ["icon"] = "Art/2DArt/SkillIcons/passives/VersatileCombatant.png", - ["id"] = "versatile_combatant_keystone2854", + ["dn"] = "Withering Presence", + ["icon"] = "Art/2DArt/SkillIcons/passives/Occultist/WitheringPresence.png", + ["id"] = "AscendancyOccultist15", ["isTattoo"] = true, - ["ks"] = true, + ["ks"] = false, ["m"] = false, - ["not"] = false, - ["overrideType"] = "KeystoneTattoo", + ["not"] = true, + ["overrideType"] = "AscendancyTattooWitch", ["sd"] = { - [1] = "-10% to maximum Chance to Block Attack Damage", - [2] = "-10% to maximum Chance to Block Spell Damage", - [3] = "+2% Chance to Block Spell Damage for each 1% Overcapped Chance to Block Attack Damage", - [4] = "Limited to 1 Keystone Tattoo", + [1] = "+60% to Chaos Resistance", + [2] = "15% more Chaos Damage", + [3] = "Limited to 1 Ascendancy Tattoo", }, ["stats"] = { - ["keystone_versatile_combatant"] = { + ["base_chaos_damage_resistance_%"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 60, + ["min"] = 60, + ["statOrder"] = 1641, + }, + ["occultist_chaos_damage_+%_final"] = { ["fmt"] = "d", ["index"] = 1, - ["max"] = 1, - ["min"] = 1, - ["statOrder"] = 10974, + ["max"] = 15, + ["min"] = 15, + ["statOrder"] = 9542, }, }, - ["targetType"] = "Keystone", + ["targetType"] = "Ascendancy Notable", ["targetValue"] = "", }, - ["Wicked Ward"] = { + ["Worthy Causes"] = { ["MaximumConnected"] = 100, ["MinimumConnected"] = 0, ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", - ["dn"] = "Wicked Ward", - ["icon"] = "Art/2DArt/SkillIcons/passives/Occultist/EldrichBarrier.png", - ["id"] = "wicked_ward_keystone2342", + ["dn"] = "Worthy Causes", + ["icon"] = "Art/2DArt/SkillIcons/passives/Champion/WorthyCauses.png", + ["id"] = "AscendancyChampion9_", ["isTattoo"] = true, - ["ks"] = true, + ["ks"] = false, ["m"] = false, - ["not"] = false, - ["overrideType"] = "KeystoneTattoo", + ["not"] = true, + ["overrideType"] = "AscendancyTattooDuelist", ["sd"] = { - [1] = "Energy Shield Recharge is not interrupted by Damage if Recharge began Recently", - [2] = "40% less Energy Shield Recharge Rate", - [3] = "Limited to 1 Keystone Tattoo", + [1] = "Having a placed Banner does not prevent you gaining Valour", + [2] = "Banner Skills have 100% increased Duration", + [3] = "Limited to 1 Ascendancy Tattoo", }, ["stats"] = { - ["keystone_wicked_ward"] = { + ["banner_duration_+%"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 100, + ["min"] = 100, + ["statOrder"] = 4967, + }, + ["can_gain_banner_resource_while_banner_is_placed"] = { ["fmt"] = "d", ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 10977, + ["statOrder"] = 1137, }, }, - ["targetType"] = "Keystone", + ["targetType"] = "Ascendancy Notable", ["targetValue"] = "", }, - ["Wind Dancer"] = { + ["Worthy Foe"] = { ["MaximumConnected"] = 100, ["MinimumConnected"] = 0, ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", - ["dn"] = "Wind Dancer", - ["icon"] = "Art/2DArt/SkillIcons/passives/WindDancer.png", - ["id"] = "wind_dancer_keystone2694", + ["dn"] = "Worthy Foe", + ["icon"] = "Art/2DArt/SkillIcons/passives/Champion/WorthyFoe.png", + ["id"] = "AscendancyChampion10", ["isTattoo"] = true, - ["ks"] = true, + ["ks"] = false, ["m"] = false, - ["not"] = false, - ["overrideType"] = "KeystoneTattoo", + ["not"] = true, + ["overrideType"] = "AscendancyTattooDuelist", ["sd"] = { - [1] = "20% less Attack Damage taken if you haven't been Hit by an Attack Recently", - [2] = "10% more chance to Evade Attacks if you have been Hit by an Attack Recently", - [3] = "20% more Attack Damage taken if you have been Hit by an Attack Recently", - [4] = "Limited to 1 Keystone Tattoo", + [1] = "Taunt on Hit", + [2] = "Enemies Taunted by you take 15% increased Damage", + [3] = "Enemies Taunted by you cannot Evade Attacks", + [4] = "Limited to 1 Ascendancy Tattoo", }, ["stats"] = { - ["keystone_wind_dancer"] = { + ["chance_to_taunt_on_hit_%"] = { ["fmt"] = "d", - ["index"] = 1, + ["index"] = 3, + ["max"] = 100, + ["min"] = 100, + ["statOrder"] = 3430, + }, + ["enemies_taunted_by_you_cannot_evade_attacks"] = { + ["fmt"] = "d", + ["index"] = 2, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 10978, + ["statOrder"] = 6400, + }, + ["taunted_enemies_damage_taken_+%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 15, + ["min"] = 15, + ["statOrder"] = 4280, }, }, - ["targetType"] = "Keystone", + ["targetType"] = "Ascendancy Notable", ["targetValue"] = "", }, ["Zealot's Oath"] = { diff --git a/src/Export/Scripts/tattooPassives.lua b/src/Export/Scripts/tattooPassives.lua index 5a13a5c4a3d..613c127dd93 100644 --- a/src/Export/Scripts/tattooPassives.lua +++ b/src/Export/Scripts/tattooPassives.lua @@ -120,26 +120,35 @@ for i=1, passiveSkillOverridesDat.rowCount do datFileRow[key] = passiveSkillOverridesDat:ReadCell(i, j) end - local tattooDatRow = tattooDatRows[datFileRow.Id] or tattooDatRows["DisplayRandomKeystone"] + local overrideId = datFileRow.Id + local overrideType = datFileRow.OverrideType.Id + local isAscendancyTattoo = overrideType:match("^AscendancyTattoo") + local tattooDatRow = tattooDatRows[overrideId] or tattooDatRows["DisplayRandomKeystone"] ---@type table local tattooPassiveNode = {} -- id - tattooPassiveNode.id = datFileRow.Id + tattooPassiveNode.id = overrideId -- display text tattooPassiveNode.sd = {} tattooPassiveNode.stats = {} tattooPassiveNode.isTattoo = true - tattooPassiveNode.overrideType = datFileRow.OverrideType.Id + tattooPassiveNode.overrideType = overrideType -- is keystone tattooPassiveNode.ks = false -- is notable - tattooPassiveNode['not'] = tattooDatRow.NodeTarget.Type == "Notable" and true or false + tattooPassiveNode['not'] = isAscendancyTattoo and true or tattooDatRow.NodeTarget.Type == "Notable" -- is mastery wheel - tattooPassiveNode.m = datFileRow.OverrideType.Id == "AlternateMastery" - - tattooPassiveNode.targetType = tattooDatRow.NodeTarget.Type - tattooPassiveNode.targetValue = tattooDatRow.NodeTarget.Value + tattooPassiveNode.m = overrideType == "AlternateMastery" + + tattooPassiveNode.targetType = isAscendancyTattoo and "Ascendancy Notable" or tattooDatRow.NodeTarget.Type + tattooPassiveNode.targetValue = isAscendancyTattoo and "" or tattooDatRow.NodeTarget.Value + if datFileRow.BlockingPassive[1] then + tattooPassiveNode.blockingPassive = { } + for _, blockingPassive in ipairs(datFileRow.BlockingPassive) do + tattooPassiveNode.blockingPassive[blockingPassive.PassiveSkillNodeId] = true + end + end -- These have 0 if they don't apply, which doesn't make sense for MaximumConnected if datFileRow.MinimumConnected > 0 then @@ -159,12 +168,11 @@ for i=1, passiveSkillOverridesDat.rowCount do end tattooPassiveNode.activeEffectImage = datFileRow.Background .. ".png" - if datFileRow.OverrideType.Id == "KeystoneTattoo" then - -- is keystone - tattooPassiveNode.ks = true + if overrideType == "KeystoneTattoo" or isAscendancyTattoo then + tattooPassiveNode.ks = overrideType == "KeystoneTattoo" datFileRow = datFileRow.PassiveSkill parsePassiveStats(datFileRow, tattooPassiveNode) - elseif datFileRow.OverrideType.Id == "AlternateMastery" then + elseif overrideType == "AlternateMastery" then -- is runegraft mastery tattooPassiveNode.name = "Runegraft Mastery" parseStats(datFileRow, tattooPassiveNode) @@ -183,7 +191,7 @@ for i=1, passiveSkillOverridesDat.rowCount do tattooPassiveNode.icon = datFileRow.Icon:gsub("%.dds$", ".png") tattooPassiveNode.sd[#tattooPassiveNode.sd + 1] = limitText - if datFileRow.Id ~= "DisplayRandomKeystone" and not datFileRow.Name:match("DNT") and not datFileRow.Name:match("of the Test") then + if not overrideId:match("^DisplayRandom") and not datFileRow.Name:match("DNT") and not datFileRow.Name:match("of the Test") then data.nodes[datFileRow.Name] = tattooPassiveNode end end 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/TreeData/3_28/skills-3.jpg b/src/TreeData/3_28/skills-3.jpg index 849a354f836..8cf716e1509 100644 Binary files a/src/TreeData/3_28/skills-3.jpg and b/src/TreeData/3_28/skills-3.jpg differ diff --git a/src/TreeData/3_28/skills-disabled-3.jpg b/src/TreeData/3_28/skills-disabled-3.jpg index de90f50dcc8..4f88dd42e36 100644 Binary files a/src/TreeData/3_28/skills-disabled-3.jpg and b/src/TreeData/3_28/skills-disabled-3.jpg differ diff --git a/src/TreeData/3_28/sprites.lua b/src/TreeData/3_28/sprites.lua index d629e41ba29..d18dd287028 100644 --- a/src/TreeData/3_28/sprites.lua +++ b/src/TreeData/3_28/sprites.lua @@ -46,8 +46,8 @@ return { } }, ["normalActive"]= { - ["filename"]= "https://web.poecdn.com/image/passive-skill/skills-3.jpg?24c5e3b9", - ["w"]= 962, + ["filename"]= "https://web.poecdn.com/image/passive-skill/skills-3.jpg?b1b66a3b", + ["w"]= 999, ["h"]= 1459, ["coords"]= { ["Art/2DArt/SkillIcons/passives/2handeddamage.png"]= { @@ -273,2539 +273,2539 @@ return { ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/AtlasTrees/BestiaryNode1.png"]= { + ["x"]= 962, + ["y"]= 0, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/BestiaryNotable4.png"]= { ["x"]= 0, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/AtlasTrees/BestiaryNotable4.png"]= { + ["Art/2DArt/SkillIcons/passives/AtlasTrees/BestiaryNotable5.png"]= { ["x"]= 26, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/AtlasTrees/BestiaryNotable5.png"]= { + ["Art/2DArt/SkillIcons/passives/AtlasTrees/BestiaryNotable6.png"]= { ["x"]= 52, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/AtlasTrees/BestiaryNotable6.png"]= { + ["Art/2DArt/SkillIcons/passives/AtlasTrees/BloodLineOlrothRune1.png"]= { ["x"]= 78, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/AtlasTrees/BloodLineOlrothRune1.png"]= { + ["Art/2DArt/SkillIcons/passives/AtlasTrees/BloodLineOlrothRune2.png"]= { ["x"]= 104, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/AtlasTrees/BloodLineOlrothRune2.png"]= { + ["Art/2DArt/SkillIcons/passives/AtlasTrees/BloodLineOlrothRune3.png"]= { ["x"]= 130, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/AtlasTrees/BloodLineOlrothRune3.png"]= { + ["Art/2DArt/SkillIcons/passives/AtlasTrees/BoldUndertaking.png"]= { ["x"]= 156, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/AtlasTrees/BoldUndertaking.png"]= { + ["Art/2DArt/SkillIcons/passives/AtlasTrees/BreachBossClaspedHands.png"]= { ["x"]= 182, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/AtlasTrees/BreachBossClaspedHands.png"]= { + ["Art/2DArt/SkillIcons/passives/AtlasTrees/DeliriumNode1.png"]= { ["x"]= 208, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/AtlasTrees/DeliriumNode1.png"]= { + ["Art/2DArt/SkillIcons/passives/AtlasTrees/ExpeditionNode1.png"]= { ["x"]= 234, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/AtlasTrees/ExpeditionNode1.png"]= { + ["Art/2DArt/SkillIcons/passives/AtlasTrees/HarbingerNotable3.png"]= { ["x"]= 260, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/AtlasTrees/HarbingerNotable3.png"]= { + ["Art/2DArt/SkillIcons/passives/AtlasTrees/LichNode1.png"]= { ["x"]= 286, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/AtlasTrees/LichNode1.png"]= { + ["Art/2DArt/SkillIcons/passives/AtlasTrees/LyciaNode1.png"]= { ["x"]= 312, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/AtlasTrees/LyciaNode1.png"]= { + ["Art/2DArt/SkillIcons/passives/AtlasTrees/MorePrimalWispsSmall.png"]= { ["x"]= 338, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/AtlasTrees/MorePrimalWispsSmall.png"]= { + ["Art/2DArt/SkillIcons/passives/AtlasTrees/MoreVividWispsSmall.png"]= { ["x"]= 364, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/AtlasTrees/MoreVividWispsSmall.png"]= { + ["Art/2DArt/SkillIcons/passives/AtlasTrees/MoreWildWispsSmall.png"]= { ["x"]= 390, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/AtlasTrees/MoreWildWispsSmall.png"]= { + ["Art/2DArt/SkillIcons/passives/AtlasTrees/PerandusNotable2.png"]= { ["x"]= 416, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/AtlasTrees/PerandusNotable2.png"]= { + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RitualBloodlineNode.png"]= { ["x"]= 442, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/AtlasTrees/RitualBloodlineNode.png"]= { + ["Art/2DArt/SkillIcons/passives/AtlasTrees/UltimatumNode1.png"]= { ["x"]= 468, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/AtlasTrees/UltimatumNode1.png"]= { + ["Art/2DArt/SkillIcons/passives/AtlasTrees/UltimatumNotable6.png"]= { ["x"]= 494, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/AtlasTrees/UltimatumNotable6.png"]= { + ["Art/2DArt/SkillIcons/passives/AtlasTrees/UltimatumNotableMonsters1.png"]= { ["x"]= 520, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/AtlasTrees/UltimatumNotableMonsters1.png"]= { + ["Art/2DArt/SkillIcons/passives/AtlasTrees/UltimatumNotableMonsters2.png"]= { ["x"]= 546, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/AtlasTrees/UltimatumNotableMonsters2.png"]= { + ["Art/2DArt/SkillIcons/passives/AtlasTrees/UltimatumNotableStoneCircle.png"]= { ["x"]= 572, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/AtlasTrees/UltimatumNotableStoneCircle.png"]= { + ["Art/2DArt/SkillIcons/passives/AttackBlindNode.png"]= { ["x"]= 598, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/AttackBlindNode.png"]= { + ["Art/2DArt/SkillIcons/passives/AttackDamangeAndEvasionNotableNode.png"]= { ["x"]= 624, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/AttackDamangeAndEvasionNotableNode.png"]= { + ["Art/2DArt/SkillIcons/passives/AttackPoisonNode.png"]= { ["x"]= 650, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/AttackPoisonNode.png"]= { + ["Art/2DArt/SkillIcons/passives/AuraEffectNode.png"]= { ["x"]= 676, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/AuraEffectNode.png"]= { + ["Art/2DArt/SkillIcons/passives/BannerAreaNode.png"]= { ["x"]= 702, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/BannerAreaNode.png"]= { + ["Art/2DArt/SkillIcons/passives/BannerDurationNode.png"]= { ["x"]= 728, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/BannerDurationNode.png"]= { + ["Art/2DArt/SkillIcons/passives/BannerEffectNode.png"]= { ["x"]= 754, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/BannerEffectNode.png"]= { + ["Art/2DArt/SkillIcons/passives/BannerResourceAreaNode.png"]= { ["x"]= 780, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/BannerResourceAreaNode.png"]= { + ["Art/2DArt/SkillIcons/passives/BeltimberBladeNode.png"]= { ["x"]= 806, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/BeltimberBladeNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Berserker/DmgAttackSpeed.png"]= { ["x"]= 832, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Berserker/DmgAttackSpeed.png"]= { + ["Art/2DArt/SkillIcons/passives/Berserker/DmgCrit.png"]= { ["x"]= 858, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Berserker/DmgCrit.png"]= { + ["Art/2DArt/SkillIcons/passives/Berserker/DmgLeech.png"]= { ["x"]= 884, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Berserker/DmgLeech.png"]= { + ["Art/2DArt/SkillIcons/passives/Berserker/DmgWarcry.png"]= { ["x"]= 910, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Berserker/DmgWarcry.png"]= { + ["Art/2DArt/SkillIcons/passives/BleedAndPoisonMitigateNode.png"]= { ["x"]= 936, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/BleedAndPoisonMitigateNode.png"]= { + ["Art/2DArt/SkillIcons/passives/BlockAttackDmgNode.png"]= { + ["x"]= 962, + ["y"]= 26, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/BlockSpellDmgNode.png"]= { ["x"]= 0, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/BlockAttackDmgNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Blood2.png"]= { ["x"]= 26, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/BlockSpellDmgNode.png"]= { + ["Art/2DArt/SkillIcons/passives/BluntInstrument.png"]= { ["x"]= 52, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Blood2.png"]= { + ["Art/2DArt/SkillIcons/passives/BowDamage.png"]= { ["x"]= 78, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/BluntInstrument.png"]= { + ["Art/2DArt/SkillIcons/passives/Brand1.png"]= { ["x"]= 104, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/BowDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/Brand2.png"]= { ["x"]= 130, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Brand1.png"]= { + ["Art/2DArt/SkillIcons/passives/BrandDmgNode.png"]= { ["x"]= 156, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Brand2.png"]= { + ["Art/2DArt/SkillIcons/passives/BrassDomeNode.png"]= { ["x"]= 182, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/BrandDmgNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Champion/AnEAttDamage.png"]= { ["x"]= 208, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/BrassDomeNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Champion/AnEAura.png"]= { ["x"]= 234, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Champion/AnEAttDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/Champion/AnEFortify.png"]= { ["x"]= 260, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Champion/AnEAura.png"]= { + ["Art/2DArt/SkillIcons/passives/Champion/AnETaunt.png"]= { ["x"]= 286, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Champion/AnEFortify.png"]= { + ["Art/2DArt/SkillIcons/passives/Champion/ImpalePassive.png"]= { ["x"]= 312, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Champion/AnETaunt.png"]= { + ["Art/2DArt/SkillIcons/passives/ChaosDamage.png"]= { ["x"]= 338, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Champion/ImpalePassive.png"]= { + ["Art/2DArt/SkillIcons/passives/ChaosDamageOverTimeNode.png"]= { ["x"]= 364, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/ChaosDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/ChaosDamagenode.png"]= { ["x"]= 390, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/ChaosDamageOverTimeNode.png"]= { + ["Art/2DArt/SkillIcons/passives/ChaosResistNode.png"]= { ["x"]= 416, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/ChaosDamagenode.png"]= { + ["Art/2DArt/SkillIcons/passives/ChaosResistNotable.png"]= { ["x"]= 442, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/ChaosResistNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Chieftain/LifeRegenFireDamage.png"]= { ["x"]= 468, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/ChaosResistNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Chieftain/LifeRegenStrength.png"]= { ["x"]= 494, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Chieftain/LifeRegenFireDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/Chieftain/LifeRegenTotemPlacementSpeed.png"]= { ["x"]= 520, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Chieftain/LifeRegenStrength.png"]= { + ["Art/2DArt/SkillIcons/passives/ClawCritStrikeChanceNode.png"]= { ["x"]= 546, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Chieftain/LifeRegenTotemPlacementSpeed.png"]= { + ["Art/2DArt/SkillIcons/passives/ColdAndFireHybridNode.png"]= { ["x"]= 572, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/ClawCritStrikeChanceNode.png"]= { + ["Art/2DArt/SkillIcons/passives/ColdDamageOverTimeNode.png"]= { ["x"]= 598, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/ColdAndFireHybridNode.png"]= { + ["Art/2DArt/SkillIcons/passives/ColdDamagenode.png"]= { ["x"]= 624, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/ColdDamageOverTimeNode.png"]= { + ["Art/2DArt/SkillIcons/passives/ColdResistNode.png"]= { ["x"]= 650, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/ColdDamagenode.png"]= { + ["Art/2DArt/SkillIcons/passives/CooldownWarcryNode1.png"]= { ["x"]= 676, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/ColdResistNode.png"]= { + ["Art/2DArt/SkillIcons/passives/CorpseDamage.png"]= { ["x"]= 702, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/CooldownWarcryNode1.png"]= { + ["Art/2DArt/SkillIcons/passives/CorpseLife.png"]= { ["x"]= 728, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/CorpseDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/CurseAreaofEffect.png"]= { ["x"]= 754, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/CorpseLife.png"]= { + ["Art/2DArt/SkillIcons/passives/CurseCastSpeed.png"]= { ["x"]= 780, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/CurseAreaofEffect.png"]= { + ["Art/2DArt/SkillIcons/passives/CurseDuration.png"]= { ["x"]= 806, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/CurseCastSpeed.png"]= { + ["Art/2DArt/SkillIcons/passives/CurseEffectNode.png"]= { ["x"]= 832, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/CurseDuration.png"]= { + ["Art/2DArt/SkillIcons/passives/CurseManaCost.png"]= { ["x"]= 858, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/CurseEffectNode.png"]= { + ["Art/2DArt/SkillIcons/passives/CurseManaReservation.png"]= { ["x"]= 884, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/CurseManaCost.png"]= { + ["Art/2DArt/SkillIcons/passives/CursemitigationclusterNode.png"]= { ["x"]= 910, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/CurseManaReservation.png"]= { + ["Art/2DArt/SkillIcons/passives/CybilsClawNode.png"]= { ["x"]= 936, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/CursemitigationclusterNode.png"]= { + ["Art/2DArt/SkillIcons/passives/DamageOverTime.png"]= { + ["x"]= 962, + ["y"]= 52, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/DamageOverTimeNode.png"]= { ["x"]= 0, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/CybilsClawNode.png"]= { + ["Art/2DArt/SkillIcons/passives/DeadEye/ProjectileDamageAccuracy.png"]= { ["x"]= 26, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/DamageOverTime.png"]= { + ["Art/2DArt/SkillIcons/passives/DeadEye/ProjectileDamageAttackSpeed.png"]= { ["x"]= 52, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/DamageOverTimeNode.png"]= { + ["Art/2DArt/SkillIcons/passives/DivineFury.png"]= { ["x"]= 78, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/DeadEye/ProjectileDamageAccuracy.png"]= { + ["Art/2DArt/SkillIcons/passives/DivineWrath.png"]= { ["x"]= 104, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/DeadEye/ProjectileDamageAttackSpeed.png"]= { + ["Art/2DArt/SkillIcons/passives/DmgHeraldSkillsNode.png"]= { ["x"]= 130, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/DivineFury.png"]= { + ["Art/2DArt/SkillIcons/passives/DmgWhenChannelSkillsNode.png"]= { ["x"]= 156, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/DivineWrath.png"]= { + ["Art/2DArt/SkillIcons/passives/DodgeAtksNode.png"]= { ["x"]= 182, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/DmgHeraldSkillsNode.png"]= { + ["Art/2DArt/SkillIcons/passives/DualWieldNodeDefensive.png"]= { ["x"]= 208, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/DmgWhenChannelSkillsNode.png"]= { + ["Art/2DArt/SkillIcons/passives/DualWieldNodeOffensive.png"]= { ["x"]= 234, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/DodgeAtksNode.png"]= { + ["Art/2DArt/SkillIcons/passives/DurationofMinionsNode.png"]= { ["x"]= 260, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/DualWieldNodeDefensive.png"]= { + ["Art/2DArt/SkillIcons/passives/ElementalDamagenode.png"]= { ["x"]= 286, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/DualWieldNodeOffensive.png"]= { + ["Art/2DArt/SkillIcons/passives/ElementalResistance2.png"]= { ["x"]= 312, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/DurationofMinionsNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Elementalist/ElementalDamageAttackCasteSpeed.png"]= { ["x"]= 338, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/ElementalDamagenode.png"]= { + ["Art/2DArt/SkillIcons/passives/Elementalist/ElementalDamageElementalResistances.png"]= { ["x"]= 364, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/ElementalResistance2.png"]= { + ["Art/2DArt/SkillIcons/passives/Elementalist/ElementalDamageFreezeShockIgnite.png"]= { ["x"]= 390, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Elementalist/ElementalDamageAttackCasteSpeed.png"]= { + ["Art/2DArt/SkillIcons/passives/EmpoweredAttackWarcryNode1.png"]= { ["x"]= 416, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Elementalist/ElementalDamageElementalResistances.png"]= { + ["Art/2DArt/SkillIcons/passives/EnergyShieldNode.png"]= { ["x"]= 442, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Elementalist/ElementalDamageFreezeShockIgnite.png"]= { + ["Art/2DArt/SkillIcons/passives/EnergyshieldLeechPassivessmall.png"]= { ["x"]= 468, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/EmpoweredAttackWarcryNode1.png"]= { + ["Art/2DArt/SkillIcons/passives/EvasionNode.png"]= { ["x"]= 494, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/EnergyShieldNode.png"]= { + ["Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.png"]= { ["x"]= 520, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/EnergyshieldLeechPassivessmall.png"]= { + ["Art/2DArt/SkillIcons/passives/FireDamageOverTimeNode.png"]= { ["x"]= 546, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/EvasionNode.png"]= { + ["Art/2DArt/SkillIcons/passives/FireDamagenode.png"]= { ["x"]= 572, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.png"]= { + ["Art/2DArt/SkillIcons/passives/FireResistNode.png"]= { ["x"]= 598, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/FireDamageOverTimeNode.png"]= { + ["Art/2DArt/SkillIcons/passives/FlaskDurationnode.png"]= { ["x"]= 624, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/FireDamagenode.png"]= { + ["Art/2DArt/SkillIcons/passives/FortifyNode.png"]= { ["x"]= 650, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/FireResistNode.png"]= { + ["Art/2DArt/SkillIcons/passives/GenericWarcryNode1.png"]= { ["x"]= 676, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/FlaskDurationnode.png"]= { + ["Art/2DArt/SkillIcons/passives/GenericWarcryNode2.png"]= { ["x"]= 702, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/FortifyNode.png"]= { + ["Art/2DArt/SkillIcons/passives/GenericWarcryNode3.png"]= { ["x"]= 728, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/GenericWarcryNode1.png"]= { + ["Art/2DArt/SkillIcons/passives/Gladiator/GLADBlockChance.png"]= { ["x"]= 754, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/GenericWarcryNode2.png"]= { + ["Art/2DArt/SkillIcons/passives/Gladiator/GLADOneHand.png"]= { ["x"]= 780, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/GenericWarcryNode3.png"]= { + ["Art/2DArt/SkillIcons/passives/GolemsNode.png"]= { ["x"]= 806, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Gladiator/GLADBlockChance.png"]= { + ["Art/2DArt/SkillIcons/passives/GraceoftheGoddessNode.png"]= { ["x"]= 832, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Gladiator/GLADOneHand.png"]= { + ["Art/2DArt/SkillIcons/passives/GreenPhysicalDamageNode.png"]= { ["x"]= 858, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/GolemsNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Guardian/ArmourEnergyMeleeDamage.png"]= { ["x"]= 884, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/GraceoftheGoddessNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Guardian/ArmourEnergyShieldDefenseFromShields.png"]= { ["x"]= 910, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/GreenPhysicalDamageNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Guardian/ArmourEnergyShieldManaPool.png"]= { ["x"]= 936, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Guardian/ArmourEnergyMeleeDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/Guardian/ArmourEnergyShieldStaves.png"]= { + ["x"]= 962, + ["y"]= 78, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Guardian/GuardianHallowingFlameNode.png"]= { ["x"]= 0, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Guardian/ArmourEnergyShieldDefenseFromShields.png"]= { + ["Art/2DArt/SkillIcons/passives/Guardian/Minion Damage Armour and Energy Shield.png"]= { ["x"]= 26, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Guardian/ArmourEnergyShieldManaPool.png"]= { + ["Art/2DArt/SkillIcons/passives/Guardian/TimeOfNeed.png"]= { ["x"]= 52, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Guardian/ArmourEnergyShieldStaves.png"]= { + ["Art/2DArt/SkillIcons/passives/HalfColdHalfLightning.png"]= { ["x"]= 78, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Guardian/GuardianHallowingFlameNode.png"]= { + ["Art/2DArt/SkillIcons/passives/HeartbreakerNode.png"]= { ["x"]= 104, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Guardian/Minion Damage Armour and Energy Shield.png"]= { + ["Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.png"]= { ["x"]= 130, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Guardian/TimeOfNeed.png"]= { + ["Art/2DArt/SkillIcons/passives/HeraldDamageNotable.png"]= { ["x"]= 156, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/HalfColdHalfLightning.png"]= { + ["Art/2DArt/SkillIcons/passives/HeraldReservationNode.png"]= { ["x"]= 182, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/HeartbreakerNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Hierophant/ManaRegen.png"]= { ["x"]= 208, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.png"]= { + ["Art/2DArt/SkillIcons/passives/IgniteBleedNode.png"]= { ["x"]= 234, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/HeraldDamageNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/ImapleNode.png"]= { ["x"]= 260, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/HeraldReservationNode.png"]= { + ["Art/2DArt/SkillIcons/passives/ImpaleNode2.png"]= { ["x"]= 286, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Hierophant/ManaRegen.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreaseCritChanceNode.png"]= { ["x"]= 312, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/IgniteBleedNode.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreaseMinionLifeNode.png"]= { ["x"]= 338, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/ImapleNode.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreasedAttackDamageNode.png"]= { ["x"]= 364, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/ImpaleNode2.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreasedManaCostNode.png"]= { ["x"]= 390, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/IncreaseCritChanceNode.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreasedMaximumLifeNode.png"]= { ["x"]= 416, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/IncreaseMinionLifeNode.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreasedMinionDamageNode.png"]= { ["x"]= 442, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/IncreasedAttackDamageNode.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreasedNonDamageAilmentNode.png"]= { ["x"]= 468, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/IncreasedManaCostNode.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreasedProjectileSpeedNode.png"]= { ["x"]= 494, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/IncreasedMaximumLifeNode.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreasedSpellDamageNode.png"]= { ["x"]= 520, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/IncreasedMinionDamageNode.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreasedWarcryNode.png"]= { ["x"]= 546, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/IncreasedNonDamageAilmentNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageAttackCasteSpeed.png"]= { ["x"]= 572, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/IncreasedProjectileSpeedNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageAvoidElementalStatusEffects.png"]= { ["x"]= 598, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/IncreasedSpellDamageNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageCasteSpeed.png"]= { ["x"]= 624, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/IncreasedWarcryNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageElementalPenetration.png"]= { ["x"]= 650, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageAttackCasteSpeed.png"]= { + ["Art/2DArt/SkillIcons/passives/JacktheaxeNode.png"]= { ["x"]= 676, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageAvoidElementalStatusEffects.png"]= { + ["Art/2DArt/SkillIcons/passives/Juggernaut/IncreasedArmourAttackDamage.png"]= { ["x"]= 702, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageCasteSpeed.png"]= { + ["Art/2DArt/SkillIcons/passives/Juggernaut/IncreasedArmourAttackSpeed.png"]= { ["x"]= 728, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageElementalPenetration.png"]= { + ["Art/2DArt/SkillIcons/passives/Juggernaut/IncreasedArmourLifeRegeneration.png"]= { ["x"]= 754, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/JacktheaxeNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Juggernaut/IncreasedArmourMovementSpeed.png"]= { ["x"]= 780, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Juggernaut/IncreasedArmourAttackDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/Juggernaut/IncreasedArmourStunDuration.png"]= { ["x"]= 806, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Juggernaut/IncreasedArmourAttackSpeed.png"]= { + ["Art/2DArt/SkillIcons/passives/Juggernaut/JuggernautArmourNotable.png"]= { ["x"]= 832, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Juggernaut/IncreasedArmourLifeRegeneration.png"]= { + ["Art/2DArt/SkillIcons/passives/KeystoneArmourMaster.png"]= { ["x"]= 858, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Juggernaut/IncreasedArmourMovementSpeed.png"]= { + ["Art/2DArt/SkillIcons/passives/KiloavaShieldNode.png"]= { ["x"]= 884, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Juggernaut/IncreasedArmourStunDuration.png"]= { + ["Art/2DArt/SkillIcons/passives/KitavasHungerNode.png"]= { ["x"]= 910, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Juggernaut/JuggernautArmourNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/LifeAndEnergyShield.png"]= { ["x"]= 936, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/KeystoneArmourMaster.png"]= { + ["Art/2DArt/SkillIcons/passives/LifeAndReducedManaCost.png"]= { + ["x"]= 962, + ["y"]= 104, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/LifeManaFlasksrecoverynode.png"]= { ["x"]= 0, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/KiloavaShieldNode.png"]= { + ["Art/2DArt/SkillIcons/passives/LifeRecoupNode.png"]= { ["x"]= 26, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/KitavasHungerNode.png"]= { + ["Art/2DArt/SkillIcons/passives/LifeandCurses.png"]= { ["x"]= 52, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/LifeAndEnergyShield.png"]= { + ["Art/2DArt/SkillIcons/passives/LifeandMana.png"]= { ["x"]= 78, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/LifeAndReducedManaCost.png"]= { + ["Art/2DArt/SkillIcons/passives/LightningDamagenode.png"]= { ["x"]= 104, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/LifeManaFlasksrecoverynode.png"]= { + ["Art/2DArt/SkillIcons/passives/LightningResistNode.png"]= { ["x"]= 130, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/LifeRecoupNode.png"]= { + ["Art/2DArt/SkillIcons/passives/MaataSceptreNode.png"]= { ["x"]= 156, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/LifeandCurses.png"]= { + ["Art/2DArt/SkillIcons/passives/MaceElemental.png"]= { ["x"]= 182, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/LifeandMana.png"]= { + ["Art/2DArt/SkillIcons/passives/ManaAndEnergyShield.png"]= { ["x"]= 208, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/LightningDamagenode.png"]= { + ["Art/2DArt/SkillIcons/passives/ManaLeechThemedNode.png"]= { ["x"]= 234, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/LightningResistNode.png"]= { + ["Art/2DArt/SkillIcons/passives/ManaandCurses2.png"]= { ["x"]= 260, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/MaataSceptreNode.png"]= { + ["Art/2DArt/SkillIcons/passives/MarkNode.png"]= { ["x"]= 286, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/MaceElemental.png"]= { + ["Art/2DArt/SkillIcons/passives/MasteryBlank.png"]= { ["x"]= 312, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/ManaAndEnergyShield.png"]= { + ["Art/2DArt/SkillIcons/passives/MawOfConquestNode.png"]= { ["x"]= 338, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/ManaLeechThemedNode.png"]= { + ["Art/2DArt/SkillIcons/passives/MaxManaNode.png"]= { ["x"]= 364, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/ManaandCurses2.png"]= { + ["Art/2DArt/SkillIcons/passives/MeleeAoENode.png"]= { ["x"]= 390, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/MarkNode.png"]= { + ["Art/2DArt/SkillIcons/passives/MeleeCriticalStrikeChanceNode.png"]= { ["x"]= 416, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/MasteryBlank.png"]= { + ["Art/2DArt/SkillIcons/passives/MeleeCriticalStrikeMultiplierNode.png"]= { ["x"]= 442, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/MawOfConquestNode.png"]= { + ["Art/2DArt/SkillIcons/passives/MeleeFireNode.png"]= { ["x"]= 468, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/MaxManaNode.png"]= { + ["Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.png"]= { ["x"]= 494, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/MeleeAoENode.png"]= { + ["Art/2DArt/SkillIcons/passives/MineManaReservationNode.png"]= { ["x"]= 520, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/MeleeCriticalStrikeChanceNode.png"]= { + ["Art/2DArt/SkillIcons/passives/MinionAccuracyDamage.png"]= { ["x"]= 546, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/MeleeCriticalStrikeMultiplierNode.png"]= { + ["Art/2DArt/SkillIcons/passives/MinionChaosResistanceNode.png"]= { ["x"]= 572, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/MeleeFireNode.png"]= { + ["Art/2DArt/SkillIcons/passives/MinionDmgHeraldSkillsNode.png"]= { ["x"]= 598, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.png"]= { + ["Art/2DArt/SkillIcons/passives/MinionElementalResistancesNode.png"]= { ["x"]= 624, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/MineManaReservationNode.png"]= { + ["Art/2DArt/SkillIcons/passives/MovementSpeedandEvasionPassive.png"]= { ["x"]= 650, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/MinionAccuracyDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/MysticRefractorNode.png"]= { ["x"]= 676, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/MinionChaosResistanceNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Necromancer/CorpseConsumptionNode.png"]= { ["x"]= 702, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/MinionDmgHeraldSkillsNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Necromancer/IncreasedMinionDamageIncreasedMinionLife.png"]= { ["x"]= 728, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/MinionElementalResistancesNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Necromancer/IncreasedMinionDamageIncreasedSkillDuration.png"]= { ["x"]= 754, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/MovementSpeedandEvasionPassive.png"]= { + ["Art/2DArt/SkillIcons/passives/Necromancer/ManaNode.png"]= { ["x"]= 780, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/MysticRefractorNode.png"]= { + ["Art/2DArt/SkillIcons/passives/NodeAxeandSwordDamage.png"]= { ["x"]= 806, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Necromancer/CorpseConsumptionNode.png"]= { + ["Art/2DArt/SkillIcons/passives/NodeBowDamage.png"]= { ["x"]= 832, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Necromancer/IncreasedMinionDamageIncreasedMinionLife.png"]= { + ["Art/2DArt/SkillIcons/passives/NodeDaggerandClawDamage.png"]= { ["x"]= 858, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Necromancer/IncreasedMinionDamageIncreasedSkillDuration.png"]= { + ["Art/2DArt/SkillIcons/passives/NodeDualWieldingDamage.png"]= { ["x"]= 884, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Necromancer/ManaNode.png"]= { + ["Art/2DArt/SkillIcons/passives/NodeHoldingShieldDamage.png"]= { ["x"]= 910, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/NodeAxeandSwordDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/NodeMaceandStaffDamage.png"]= { ["x"]= 936, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/NodeBowDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/NodeTwoHandedMeleeDamage.png"]= { + ["x"]= 962, + ["y"]= 130, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/NodeWandDamage.png"]= { ["x"]= 0, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/NodeDaggerandClawDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/Occultist/EnergyShieldChaos.png"]= { ["x"]= 26, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/NodeDualWieldingDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/Occultist/EnergyShieldCold.png"]= { ["x"]= 52, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/NodeHoldingShieldDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/Occultist/IncreasedEnergyShieldAttackAndCastSpeed.png"]= { ["x"]= 78, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/NodeMaceandStaffDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/Occultist/IncreasedEnergyShieldCriticalStrikeChance.png"]= { ["x"]= 104, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/NodeTwoHandedMeleeDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/Occultist/IncreasedEnergyShieldManaReservation.png"]= { ["x"]= 130, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/NodeWandDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/Occultist/IncreasedEnergyShieldMaximumMana.png"]= { ["x"]= 156, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Occultist/EnergyShieldChaos.png"]= { + ["Art/2DArt/SkillIcons/passives/OneHandedPhysicalAndLeechNode.png"]= { ["x"]= 182, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Occultist/EnergyShieldCold.png"]= { + ["Art/2DArt/SkillIcons/passives/OneHandedPhysicalAndLeechNotable.png"]= { ["x"]= 208, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Occultist/IncreasedEnergyShieldAttackAndCastSpeed.png"]= { + ["Art/2DArt/SkillIcons/passives/PathFinder/FlaskEffectDamageOverTime.png"]= { ["x"]= 234, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Occultist/IncreasedEnergyShieldCriticalStrikeChance.png"]= { + ["Art/2DArt/SkillIcons/passives/PathFinder/FlaskEffectElementalResistance.png"]= { ["x"]= 260, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Occultist/IncreasedEnergyShieldManaReservation.png"]= { + ["Art/2DArt/SkillIcons/passives/PathFinder/FlaskEffectFlaskDuration.png"]= { ["x"]= 286, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Occultist/IncreasedEnergyShieldMaximumMana.png"]= { + ["Art/2DArt/SkillIcons/passives/PhysicalDamageNode.png"]= { ["x"]= 312, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/OneHandedPhysicalAndLeechNode.png"]= { + ["Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.png"]= { ["x"]= 338, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/OneHandedPhysicalAndLeechNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimenode3.png"]= { ["x"]= 364, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/PathFinder/FlaskEffectDamageOverTime.png"]= { + ["Art/2DArt/SkillIcons/passives/PhysicalDamagenode2.png"]= { ["x"]= 390, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/PathFinder/FlaskEffectElementalResistance.png"]= { + ["Art/2DArt/SkillIcons/passives/PhysicalandChaosDamage.png"]= { ["x"]= 416, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/PathFinder/FlaskEffectFlaskDuration.png"]= { + ["Art/2DArt/SkillIcons/passives/Poison.png"]= { ["x"]= 442, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/PhysicalDamageNode.png"]= { + ["Art/2DArt/SkillIcons/passives/PoisonSpellsNode.png"]= { ["x"]= 468, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Primalist/PrimalistNode.png"]= { ["x"]= 494, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimenode3.png"]= { + ["Art/2DArt/SkillIcons/passives/PrimordialCaneNode.png"]= { ["x"]= 520, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/PhysicalDamagenode2.png"]= { + ["Art/2DArt/SkillIcons/passives/ProjectileDmgNode.png"]= { ["x"]= 546, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/PhysicalandChaosDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/ProjectilesNode.png"]= { ["x"]= 572, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Poison.png"]= { + ["Art/2DArt/SkillIcons/passives/ProjectilesNode2.png"]= { ["x"]= 598, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/PoisonSpellsNode.png"]= { + ["Art/2DArt/SkillIcons/passives/ProsperosProtectionNode.png"]= { ["x"]= 624, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Primalist/PrimalistNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Rage.png"]= { ["x"]= 650, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/PrimordialCaneNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Raider/IncreasedElementalDamage.png"]= { ["x"]= 676, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/ProjectileDmgNode.png"]= { + ["Art/2DArt/SkillIcons/passives/RangedTotemAttackSpeed.png"]= { ["x"]= 702, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/ProjectilesNode.png"]= { + ["Art/2DArt/SkillIcons/passives/RangedTotemDamage.png"]= { ["x"]= 728, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/ProjectilesNode2.png"]= { + ["Art/2DArt/SkillIcons/passives/RedAttackSmallPassive.png"]= { ["x"]= 754, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/ProsperosProtectionNode.png"]= { + ["Art/2DArt/SkillIcons/passives/ReducedManaCostNode.png"]= { ["x"]= 780, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Rage.png"]= { + ["Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.png"]= { ["x"]= 806, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Raider/IncreasedElementalDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/RetaliationNode1.png"]= { ["x"]= 832, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/RangedTotemAttackSpeed.png"]= { + ["Art/2DArt/SkillIcons/passives/RetaliationNode2.png"]= { ["x"]= 858, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/RangedTotemDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/RetaliationNode3.png"]= { ["x"]= 884, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/RedAttackSmallPassive.png"]= { + ["Art/2DArt/SkillIcons/passives/RetaliationNode4.png"]= { ["x"]= 910, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/ReducedManaCostNode.png"]= { + ["Art/2DArt/SkillIcons/passives/RetaliationNode5.png"]= { ["x"]= 936, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Saboteur/ElementalDamageElementalResistance.png"]= { + ["x"]= 962, + ["y"]= 156, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Saboteur/ElementalDamageMines.png"]= { ["x"]= 0, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/RetaliationNode1.png"]= { + ["Art/2DArt/SkillIcons/passives/Saboteur/ElementalDamageMovementSpeed.png"]= { ["x"]= 26, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/RetaliationNode2.png"]= { + ["Art/2DArt/SkillIcons/passives/SareshBloodlineNode.png"]= { ["x"]= 52, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/RetaliationNode3.png"]= { + ["Art/2DArt/SkillIcons/passives/SharpandBrittle.png"]= { ["x"]= 78, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/RetaliationNode4.png"]= { + ["Art/2DArt/SkillIcons/passives/ShieldAttackDamage.png"]= { ["x"]= 104, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/RetaliationNode5.png"]= { + ["Art/2DArt/SkillIcons/passives/ShieldNodeOffensive.png"]= { ["x"]= 130, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Saboteur/ElementalDamageElementalResistance.png"]= { + ["Art/2DArt/SkillIcons/passives/Slayer/2HdmgAOE.png"]= { ["x"]= 156, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Saboteur/ElementalDamageMines.png"]= { + ["Art/2DArt/SkillIcons/passives/Slayer/2HdmgCritStrikeMultiplier.png"]= { ["x"]= 182, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Saboteur/ElementalDamageMovementSpeed.png"]= { + ["Art/2DArt/SkillIcons/passives/Slayer/2HdmgFrenzyEnduranceCharge.png"]= { ["x"]= 208, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/SareshBloodlineNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Slayer/2HdmgLeech.png"]= { ["x"]= 234, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/SharpandBrittle.png"]= { + ["Art/2DArt/SkillIcons/passives/Slayer/2HdmgSpeed.png"]= { ["x"]= 260, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/ShieldAttackDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/SpeedWarcryNode1.png"]= { ["x"]= 286, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/ShieldNodeOffensive.png"]= { + ["Art/2DArt/SkillIcons/passives/SpellMultiplyer2.png"]= { ["x"]= 312, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Slayer/2HdmgAOE.png"]= { + ["Art/2DArt/SkillIcons/passives/SpellSuppresionNode.png"]= { ["x"]= 338, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Slayer/2HdmgCritStrikeMultiplier.png"]= { + ["Art/2DArt/SkillIcons/passives/SpellSuppressionEnergyShield.png"]= { ["x"]= 364, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Slayer/2HdmgFrenzyEnduranceCharge.png"]= { + ["Art/2DArt/SkillIcons/passives/SpellSuppressionLifeFlasks.png"]= { ["x"]= 390, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Slayer/2HdmgLeech.png"]= { + ["Art/2DArt/SkillIcons/passives/StaffNodeDefensive.png"]= { ["x"]= 416, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Slayer/2HdmgSpeed.png"]= { + ["Art/2DArt/SkillIcons/passives/StaffNodeOffensive.png"]= { ["x"]= 442, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/SpeedWarcryNode1.png"]= { + ["Art/2DArt/SkillIcons/passives/StanceSmallPassive.png"]= { ["x"]= 468, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/SpellMultiplyer2.png"]= { + ["Art/2DArt/SkillIcons/passives/StancesNode.png"]= { ["x"]= 494, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/SpellSuppresionNode.png"]= { + ["Art/2DArt/SkillIcons/passives/StrikeRangeNode.png"]= { ["x"]= 520, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/SpellSuppressionEnergyShield.png"]= { + ["Art/2DArt/SkillIcons/passives/TearOfPurityNode.png"]= { ["x"]= 546, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/SpellSuppressionLifeFlasks.png"]= { + ["Art/2DArt/SkillIcons/passives/TerminusEstNode.png"]= { ["x"]= 572, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/StaffNodeDefensive.png"]= { + ["Art/2DArt/SkillIcons/passives/TheBurdenOfTruthNode.png"]= { ["x"]= 598, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/StaffNodeOffensive.png"]= { + ["Art/2DArt/SkillIcons/passives/TheBurdenofShadowsNode.png"]= { ["x"]= 624, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/StanceSmallPassive.png"]= { + ["Art/2DArt/SkillIcons/passives/TinctureFlaskNode1.png"]= { ["x"]= 650, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/StancesNode.png"]= { + ["Art/2DArt/SkillIcons/passives/TinctureNode1.png"]= { ["x"]= 676, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/StrikeRangeNode.png"]= { + ["Art/2DArt/SkillIcons/passives/TinctureNode2.png"]= { ["x"]= 702, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/TearOfPurityNode.png"]= { + ["Art/2DArt/SkillIcons/passives/TinctureNode3.png"]= { ["x"]= 728, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/TerminusEstNode.png"]= { + ["Art/2DArt/SkillIcons/passives/TotemDmgNode.png"]= { ["x"]= 754, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/TheBurdenOfTruthNode.png"]= { + ["Art/2DArt/SkillIcons/passives/TrapAndMineDmgNode.png"]= { ["x"]= 780, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/TheBurdenofShadowsNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Trickster/DefensiveNodeTrickster.png"]= { ["x"]= 806, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/TinctureFlaskNode1.png"]= { + ["Art/2DArt/SkillIcons/passives/Trickster/OffensiveNodeTrickster.png"]= { ["x"]= 832, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/TinctureNode1.png"]= { + ["Art/2DArt/SkillIcons/passives/VersusoBootsNode.png"]= { ["x"]= 858, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/TinctureNode2.png"]= { + ["Art/2DArt/SkillIcons/passives/VictariosJacketNode.png"]= { ["x"]= 884, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/TinctureNode3.png"]= { + ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanCurses2.png"]= { ["x"]= 910, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/TotemDmgNode.png"]= { + ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanNode.png"]= { ["x"]= 936, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/TrapAndMineDmgNode.png"]= { + ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanSpecialCurse1.png"]= { + ["x"]= 962, + ["y"]= 182, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanSpecialCurse2.png"]= { ["x"]= 0, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Trickster/DefensiveNodeTrickster.png"]= { + ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanSpecialCurse3.png"]= { ["x"]= 26, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Trickster/OffensiveNodeTrickster.png"]= { + ["Art/2DArt/SkillIcons/passives/WandCritical.png"]= { ["x"]= 52, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/VersusoBootsNode.png"]= { + ["Art/2DArt/SkillIcons/passives/WandSpeedAccuracyNode.png"]= { ["x"]= 78, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/VictariosJacketNode.png"]= { + ["Art/2DArt/SkillIcons/passives/WarCryCooldown.png"]= { ["x"]= 104, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanCurses2.png"]= { + ["Art/2DArt/SkillIcons/passives/WarcryBuffEffectNotable.png"]= { ["x"]= 130, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Warden/SpellSuppressionEvasion.png"]= { ["x"]= 156, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanSpecialCurse1.png"]= { + ["Art/2DArt/SkillIcons/passives/Warden/TincturesNode.png"]= { ["x"]= 182, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanSpecialCurse2.png"]= { + ["Art/2DArt/SkillIcons/passives/Warden/WardenNode.png"]= { ["x"]= 208, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanSpecialCurse3.png"]= { + ["Art/2DArt/SkillIcons/passives/Warden/WardenTracking.png"]= { ["x"]= 234, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/WandCritical.png"]= { + ["Art/2DArt/SkillIcons/passives/WarpedTimepieceNode.png"]= { ["x"]= 260, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/WandSpeedAccuracyNode.png"]= { + ["Art/2DArt/SkillIcons/passives/WidowhailBowNode.png"]= { ["x"]= 286, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/WarCryCooldown.png"]= { + ["Art/2DArt/SkillIcons/passives/accuracy.png"]= { ["x"]= 312, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/WarcryBuffEffectNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/accuracy2h.png"]= { ["x"]= 338, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Warden/SpellSuppressionEvasion.png"]= { + ["Art/2DArt/SkillIcons/passives/accuracydex.png"]= { ["x"]= 364, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Warden/TincturesNode.png"]= { + ["Art/2DArt/SkillIcons/passives/accuracysword.png"]= { ["x"]= 390, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Warden/WardenNode.png"]= { + ["Art/2DArt/SkillIcons/passives/arcaneradience.png"]= { ["x"]= 416, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Warden/WardenTracking.png"]= { + ["Art/2DArt/SkillIcons/passives/areaofeffect.png"]= { ["x"]= 442, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/WarpedTimepieceNode.png"]= { + ["Art/2DArt/SkillIcons/passives/attackspeed.png"]= { ["x"]= 468, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/WidowhailBowNode.png"]= { + ["Art/2DArt/SkillIcons/passives/attackspeed2h.png"]= { ["x"]= 494, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/accuracy.png"]= { + ["Art/2DArt/SkillIcons/passives/attackspeedaxe.png"]= { ["x"]= 520, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/accuracy2h.png"]= { + ["Art/2DArt/SkillIcons/passives/attackspeedbow.png"]= { ["x"]= 546, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/accuracydex.png"]= { + ["Art/2DArt/SkillIcons/passives/attackspeedclaw.png"]= { ["x"]= 572, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/accuracysword.png"]= { + ["Art/2DArt/SkillIcons/passives/attackspeeddagger.png"]= { ["x"]= 598, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/arcaneradience.png"]= { + ["Art/2DArt/SkillIcons/passives/attackspeeddual.png"]= { ["x"]= 624, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/areaofeffect.png"]= { + ["Art/2DArt/SkillIcons/passives/attackspeedmace.png"]= { ["x"]= 650, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/attackspeed.png"]= { + ["Art/2DArt/SkillIcons/passives/attackspeedsworddex.png"]= { ["x"]= 676, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/attackspeed2h.png"]= { + ["Art/2DArt/SkillIcons/passives/auraareaofeffect.png"]= { ["x"]= 702, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/attackspeedaxe.png"]= { + ["Art/2DArt/SkillIcons/passives/auraeffect.png"]= { ["x"]= 728, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/attackspeedbow.png"]= { + ["Art/2DArt/SkillIcons/passives/avoidburning.png"]= { ["x"]= 754, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/attackspeedclaw.png"]= { + ["Art/2DArt/SkillIcons/passives/avoidchilling.png"]= { ["x"]= 780, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/attackspeeddagger.png"]= { + ["Art/2DArt/SkillIcons/passives/axedmgspeed.png"]= { ["x"]= 806, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/attackspeeddual.png"]= { + ["Art/2DArt/SkillIcons/passives/blankDex.png"]= { ["x"]= 832, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/attackspeedmace.png"]= { + ["Art/2DArt/SkillIcons/passives/blankInt.png"]= { ["x"]= 858, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/attackspeedsworddex.png"]= { + ["Art/2DArt/SkillIcons/passives/blankStr.png"]= { ["x"]= 884, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/auraareaofeffect.png"]= { + ["Art/2DArt/SkillIcons/passives/blastradius.png"]= { ["x"]= 910, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/auraeffect.png"]= { + ["Art/2DArt/SkillIcons/passives/blockstaff.png"]= { ["x"]= 936, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/avoidburning.png"]= { + ["Art/2DArt/SkillIcons/passives/blockstr.png"]= { + ["x"]= 962, + ["y"]= 208, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/castavoidinterruption.png"]= { ["x"]= 0, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/avoidchilling.png"]= { + ["Art/2DArt/SkillIcons/passives/castspeed.png"]= { ["x"]= 26, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/axedmgspeed.png"]= { + ["Art/2DArt/SkillIcons/passives/chargedex.png"]= { ["x"]= 52, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/blankDex.png"]= { + ["Art/2DArt/SkillIcons/passives/chargeint.png"]= { ["x"]= 78, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/blankInt.png"]= { + ["Art/2DArt/SkillIcons/passives/chargestr.png"]= { ["x"]= 104, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/blankStr.png"]= { + ["Art/2DArt/SkillIcons/passives/clawmasterydex.png"]= { ["x"]= 130, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/blastradius.png"]= { + ["Art/2DArt/SkillIcons/passives/clustersLinknode1.png"]= { ["x"]= 156, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/blockstaff.png"]= { + ["Art/2DArt/SkillIcons/passives/clustersLinknode2.png"]= { ["x"]= 182, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/blockstr.png"]= { + ["Art/2DArt/SkillIcons/passives/colddamage.png"]= { ["x"]= 208, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/castavoidinterruption.png"]= { + ["Art/2DArt/SkillIcons/passives/coldresist.png"]= { ["x"]= 234, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/castspeed.png"]= { + ["Art/2DArt/SkillIcons/passives/criticalbow.png"]= { ["x"]= 260, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/chargedex.png"]= { + ["Art/2DArt/SkillIcons/passives/criticalclaw.png"]= { ["x"]= 286, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/chargeint.png"]= { + ["Art/2DArt/SkillIcons/passives/criticaldaggerdex.png"]= { ["x"]= 312, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/chargestr.png"]= { + ["Art/2DArt/SkillIcons/passives/criticaldaggerint.png"]= { ["x"]= 338, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/clawmasterydex.png"]= { + ["Art/2DArt/SkillIcons/passives/criticalstrikechance.png"]= { ["x"]= 364, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/clustersLinknode1.png"]= { + ["Art/2DArt/SkillIcons/passives/criticalstrikechance2.png"]= { ["x"]= 390, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/clustersLinknode2.png"]= { + ["Art/2DArt/SkillIcons/passives/criticalstrikemultiplier.png"]= { ["x"]= 416, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/colddamage.png"]= { + ["Art/2DArt/SkillIcons/passives/criticalstrikemultiplier2.png"]= { ["x"]= 442, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/coldresist.png"]= { + ["Art/2DArt/SkillIcons/passives/critstrchnc.png"]= { ["x"]= 468, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/criticalbow.png"]= { + ["Art/2DArt/SkillIcons/passives/crystalskin.png"]= { ["x"]= 494, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/criticalclaw.png"]= { + ["Art/2DArt/SkillIcons/passives/damage.png"]= { ["x"]= 520, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/criticaldaggerdex.png"]= { + ["Art/2DArt/SkillIcons/passives/damage_blue.png"]= { ["x"]= 546, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/criticaldaggerint.png"]= { + ["Art/2DArt/SkillIcons/passives/damageaxe.png"]= { ["x"]= 572, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/criticalstrikechance.png"]= { + ["Art/2DArt/SkillIcons/passives/damagedualwield.png"]= { ["x"]= 598, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/criticalstrikechance2.png"]= { + ["Art/2DArt/SkillIcons/passives/damagedualwieldgreen.png"]= { ["x"]= 624, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/criticalstrikemultiplier.png"]= { + ["Art/2DArt/SkillIcons/passives/damagemelee.png"]= { ["x"]= 650, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/criticalstrikemultiplier2.png"]= { + ["Art/2DArt/SkillIcons/passives/damagespells.png"]= { ["x"]= 676, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/critstrchnc.png"]= { + ["Art/2DArt/SkillIcons/passives/damagestaff.png"]= { ["x"]= 702, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/crystalskin.png"]= { + ["Art/2DArt/SkillIcons/passives/damagesword.png"]= { ["x"]= 728, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/damage.png"]= { + ["Art/2DArt/SkillIcons/passives/dmgreduction.png"]= { ["x"]= 754, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/damage_blue.png"]= { + ["Art/2DArt/SkillIcons/passives/dualwieldaccuracy.png"]= { ["x"]= 780, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/damageaxe.png"]= { + ["Art/2DArt/SkillIcons/passives/dualwieldblock.png"]= { ["x"]= 806, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/damagedualwield.png"]= { + ["Art/2DArt/SkillIcons/passives/elementaldamage.png"]= { ["x"]= 832, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/damagedualwieldgreen.png"]= { + ["Art/2DArt/SkillIcons/passives/energyshield.png"]= { ["x"]= 858, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/damagemelee.png"]= { + ["Art/2DArt/SkillIcons/passives/evade.png"]= { ["x"]= 884, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/damagespells.png"]= { + ["Art/2DArt/SkillIcons/passives/evadepercentage.png"]= { ["x"]= 910, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/damagestaff.png"]= { + ["Art/2DArt/SkillIcons/passives/evasion.png"]= { ["x"]= 936, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/damagesword.png"]= { + ["Art/2DArt/SkillIcons/passives/firedamage.png"]= { + ["x"]= 962, + ["y"]= 234, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/firedamageint.png"]= { ["x"]= 0, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/dmgreduction.png"]= { + ["Art/2DArt/SkillIcons/passives/firedamagestr.png"]= { ["x"]= 26, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/dualwieldaccuracy.png"]= { + ["Art/2DArt/SkillIcons/passives/fireresist.png"]= { ["x"]= 52, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/dualwieldblock.png"]= { + ["Art/2DArt/SkillIcons/passives/flaskdex.png"]= { ["x"]= 78, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/elementaldamage.png"]= { + ["Art/2DArt/SkillIcons/passives/flaskint.png"]= { ["x"]= 104, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/energyshield.png"]= { + ["Art/2DArt/SkillIcons/passives/flaskstr.png"]= { ["x"]= 130, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/evade.png"]= { + ["Art/2DArt/SkillIcons/passives/increased armor.png"]= { ["x"]= 156, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/evadepercentage.png"]= { + ["Art/2DArt/SkillIcons/passives/increasedarmorandlife.png"]= { ["x"]= 182, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/evasion.png"]= { + ["Art/2DArt/SkillIcons/passives/increasedrunspeeddex.png"]= { ["x"]= 208, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/firedamage.png"]= { + ["Art/2DArt/SkillIcons/passives/innerforce.png"]= { ["x"]= 234, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/firedamageint.png"]= { + ["Art/2DArt/SkillIcons/passives/knockback.png"]= { ["x"]= 260, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/firedamagestr.png"]= { + ["Art/2DArt/SkillIcons/passives/life1.png"]= { ["x"]= 286, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/fireresist.png"]= { + ["Art/2DArt/SkillIcons/passives/lifegainpertarget.png"]= { ["x"]= 312, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/flaskdex.png"]= { + ["Art/2DArt/SkillIcons/passives/lifeleech.png"]= { ["x"]= 338, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/flaskint.png"]= { + ["Art/2DArt/SkillIcons/passives/lifemana.png"]= { ["x"]= 364, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/flaskstr.png"]= { + ["Art/2DArt/SkillIcons/passives/lifepercentage.png"]= { ["x"]= 390, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/increased armor.png"]= { + ["Art/2DArt/SkillIcons/passives/lightningdex.png"]= { ["x"]= 416, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/increasedarmorandlife.png"]= { + ["Art/2DArt/SkillIcons/passives/lightningint.png"]= { ["x"]= 442, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/increasedrunspeeddex.png"]= { + ["Art/2DArt/SkillIcons/passives/lightningstr.png"]= { ["x"]= 468, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/innerforce.png"]= { + ["Art/2DArt/SkillIcons/passives/macecritdmgspeed.png"]= { ["x"]= 494, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/knockback.png"]= { + ["Art/2DArt/SkillIcons/passives/macedmg.png"]= { ["x"]= 520, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/life1.png"]= { + ["Art/2DArt/SkillIcons/passives/mana.png"]= { ["x"]= 546, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/lifegainpertarget.png"]= { + ["Art/2DArt/SkillIcons/passives/manaregeneration.png"]= { ["x"]= 572, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/lifeleech.png"]= { + ["Art/2DArt/SkillIcons/passives/manareservationreduction.png"]= { ["x"]= 598, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/lifemana.png"]= { + ["Art/2DArt/SkillIcons/passives/manastr.png"]= { ["x"]= 624, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/lifepercentage.png"]= { + ["Art/2DArt/SkillIcons/passives/masterydaggerdex.png"]= { ["x"]= 650, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/lightningdex.png"]= { + ["Art/2DArt/SkillIcons/passives/masterysword.png"]= { ["x"]= 676, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/lightningint.png"]= { + ["Art/2DArt/SkillIcons/passives/masterywand.png"]= { ["x"]= 702, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/lightningstr.png"]= { + ["Art/2DArt/SkillIcons/passives/meleeattackspeed.png"]= { ["x"]= 728, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/macecritdmgspeed.png"]= { + ["Art/2DArt/SkillIcons/passives/minionattackspeed.png"]= { ["x"]= 754, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/macedmg.png"]= { + ["Art/2DArt/SkillIcons/passives/minionblockchance.png"]= { ["x"]= 780, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/mana.png"]= { + ["Art/2DArt/SkillIcons/passives/miniondamage.png"]= { ["x"]= 806, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/manaregeneration.png"]= { + ["Art/2DArt/SkillIcons/passives/miniondamageBlue.png"]= { ["x"]= 832, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/manareservationreduction.png"]= { + ["Art/2DArt/SkillIcons/passives/minionlife.png"]= { ["x"]= 858, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/manastr.png"]= { + ["Art/2DArt/SkillIcons/passives/onehanddamage.png"]= { ["x"]= 884, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/masterydaggerdex.png"]= { + ["Art/2DArt/SkillIcons/passives/onehandspeed.png"]= { ["x"]= 910, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/masterysword.png"]= { + ["Art/2DArt/SkillIcons/passives/plusdexterity.png"]= { ["x"]= 936, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/masterywand.png"]= { + ["Art/2DArt/SkillIcons/passives/plusintelligence.png"]= { + ["x"]= 962, + ["y"]= 260, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/plusintelligencedexterity.png"]= { ["x"]= 0, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/meleeattackspeed.png"]= { + ["Art/2DArt/SkillIcons/passives/plusstrength.png"]= { ["x"]= 26, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/minionattackspeed.png"]= { + ["Art/2DArt/SkillIcons/passives/plusstrengthdexterity.png"]= { ["x"]= 52, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/minionblockchance.png"]= { + ["Art/2DArt/SkillIcons/passives/plusstrengthintelligence.png"]= { ["x"]= 78, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/miniondamage.png"]= { + ["Art/2DArt/SkillIcons/passives/projectilespeed.png"]= { ["x"]= 104, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/miniondamageBlue.png"]= { + ["Art/2DArt/SkillIcons/passives/shieldblock.png"]= { ["x"]= 130, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/minionlife.png"]= { + ["Art/2DArt/SkillIcons/passives/skillduration.png"]= { ["x"]= 156, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/onehanddamage.png"]= { + ["Art/2DArt/SkillIcons/passives/spellcritical.png"]= { ["x"]= 182, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/onehandspeed.png"]= { + ["Art/2DArt/SkillIcons/passives/staffaccuracy.png"]= { ["x"]= 208, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/plusdexterity.png"]= { + ["Art/2DArt/SkillIcons/passives/staffspeed.png"]= { ["x"]= 234, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/plusintelligence.png"]= { + ["Art/2DArt/SkillIcons/passives/stundex.png"]= { ["x"]= 260, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/plusintelligencedexterity.png"]= { + ["Art/2DArt/SkillIcons/passives/stunmace.png"]= { ["x"]= 286, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/plusstrength.png"]= { + ["Art/2DArt/SkillIcons/passives/stunstr.png"]= { ["x"]= 312, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/plusstrengthdexterity.png"]= { + ["Art/2DArt/SkillIcons/passives/tempdex.png"]= { ["x"]= 338, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/plusstrengthintelligence.png"]= { + ["Art/2DArt/SkillIcons/passives/tempint.png"]= { ["x"]= 364, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/projectilespeed.png"]= { + ["Art/2DArt/SkillIcons/passives/totemandbrandattackspeed.png"]= { ["x"]= 390, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/shieldblock.png"]= { + ["Art/2DArt/SkillIcons/passives/totemandbranddamage.png"]= { ["x"]= 416, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/skillduration.png"]= { + ["Art/2DArt/SkillIcons/passives/totemandbrandrange.png"]= { ["x"]= 442, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/spellcritical.png"]= { + ["Art/2DArt/SkillIcons/passives/totemattackspeed.png"]= { ["x"]= 468, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/staffaccuracy.png"]= { + ["Art/2DArt/SkillIcons/passives/totemlife.png"]= { ["x"]= 494, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/staffspeed.png"]= { + ["Art/2DArt/SkillIcons/passives/trapcriticalstrike.png"]= { ["x"]= 520, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/stundex.png"]= { + ["Art/2DArt/SkillIcons/passives/trapdamage.png"]= { ["x"]= 546, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/stunmace.png"]= { + ["Art/2DArt/SkillIcons/passives/trapsduration.png"]= { ["x"]= 572, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/stunstr.png"]= { + ["Art/2DArt/SkillIcons/passives/trapsradius.png"]= { ["x"]= 598, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/tempdex.png"]= { + ["Art/2DArt/SkillIcons/passives/trapsspeed.png"]= { ["x"]= 624, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/tempint.png"]= { + ["Art/2DArt/SkillIcons/passives/weaponelementaldamagepercentage.png"]= { ["x"]= 650, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/totemandbrandattackspeed.png"]= { + ["Art/2DArt/SkillIcons/ArohonguiTribeSkill.png"]= { ["x"]= 676, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/totemandbranddamage.png"]= { + ["Art/2DArt/SkillIcons/HinekoraTribeSkill.png"]= { ["x"]= 702, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/totemandbrandrange.png"]= { + ["Art/2DArt/SkillIcons/KitavaTribeSkill.png"]= { ["x"]= 728, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/totemattackspeed.png"]= { + ["Art/2DArt/SkillIcons/NgamahuTribeSkill.png"]= { ["x"]= 754, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/totemlife.png"]= { + ["Art/2DArt/SkillIcons/RamakoTribeSkill.png"]= { ["x"]= 780, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/trapcriticalstrike.png"]= { + ["Art/2DArt/SkillIcons/RongokuraiTribeSkill.png"]= { ["x"]= 806, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/trapdamage.png"]= { + ["Art/2DArt/SkillIcons/TasalioTribeSkill.png"]= { ["x"]= 832, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/trapsduration.png"]= { + ["Art/2DArt/SkillIcons/TawhoaTribeSkill.png"]= { ["x"]= 858, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/trapsradius.png"]= { + ["Art/2DArt/SkillIcons/TukohamaTribeSkill.png"]= { ["x"]= 884, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/trapsspeed.png"]= { + ["Art/2DArt/SkillIcons/ValakoTribeSkill.png"]= { ["x"]= 910, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/weaponelementaldamagepercentage.png"]= { + ["Art/2DArt/SkillIcons/passives/HinekoraPassiveIcon1.png"]= { ["x"]= 936, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/ArohonguiTribeSkill.png"]= { - ["x"]= 0, - ["y"]= 312, - ["w"]= 26, - ["h"]= 26 - }, - ["Art/2DArt/SkillIcons/HinekoraTribeSkill.png"]= { - ["x"]= 26, - ["y"]= 312, - ["w"]= 26, - ["h"]= 26 - }, - ["Art/2DArt/SkillIcons/KitavaTribeSkill.png"]= { - ["x"]= 52, - ["y"]= 312, - ["w"]= 26, - ["h"]= 26 - }, - ["Art/2DArt/SkillIcons/NgamahuTribeSkill.png"]= { - ["x"]= 78, - ["y"]= 312, - ["w"]= 26, - ["h"]= 26 - }, - ["Art/2DArt/SkillIcons/RamakoTribeSkill.png"]= { - ["x"]= 104, - ["y"]= 312, - ["w"]= 26, - ["h"]= 26 - }, - ["Art/2DArt/SkillIcons/RongokuraiTribeSkill.png"]= { - ["x"]= 130, - ["y"]= 312, - ["w"]= 26, - ["h"]= 26 - }, - ["Art/2DArt/SkillIcons/TasalioTribeSkill.png"]= { - ["x"]= 156, - ["y"]= 312, - ["w"]= 26, - ["h"]= 26 - }, - ["Art/2DArt/SkillIcons/TawhoaTribeSkill.png"]= { - ["x"]= 182, - ["y"]= 312, - ["w"]= 26, - ["h"]= 26 - }, - ["Art/2DArt/SkillIcons/TukohamaTribeSkill.png"]= { - ["x"]= 208, - ["y"]= 312, - ["w"]= 26, - ["h"]= 26 - }, - ["Art/2DArt/SkillIcons/ValakoTribeSkill.png"]= { - ["x"]= 234, - ["y"]= 312, - ["w"]= 26, - ["h"]= 26 - }, - ["Art/2DArt/SkillIcons/passives/HinekoraPassiveIcon1.png"]= { - ["x"]= 260, - ["y"]= 312, - ["w"]= 26, - ["h"]= 26 - }, ["Art/2DArt/SkillIcons/passives/HinekoraPassiveIcon2.png"]= { - ["x"]= 286, - ["y"]= 312, + ["x"]= 962, + ["y"]= 286, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/HinekoraPassiveIcon3.png"]= { - ["x"]= 312, + ["x"]= 0, ["y"]= 312, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/SkillscostingLifenode.png"]= { - ["x"]= 338, + ["x"]= 26, ["y"]= 312, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/accuracyint.png"]= { - ["x"]= 364, + ["x"]= 52, ["y"]= 312, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/totemandbrandlife.png"]= { - ["x"]= 390, + ["x"]= 78, ["y"]= 312, ["w"]= 26, ["h"]= 26 @@ -2813,8 +2813,8 @@ return { } }, ["notableActive"]= { - ["filename"]= "https://web.poecdn.com/image/passive-skill/skills-3.jpg?24c5e3b9", - ["w"]= 962, + ["filename"]= "https://web.poecdn.com/image/passive-skill/skills-3.jpg?b1b66a3b", + ["w"]= 999, ["h"]= 1459, ["coords"]= { ["Art/2DArt/SkillIcons/passives/2handeddamage.png"]= { @@ -2974,3871 +2974,3997 @@ return { ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/Assassin/DeadlyInfusion.png"]= { - ["x"]= 0, - ["y"]= 375, + ["x"]= 962, + ["y"]= 338, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/Assassin/Elusive.png"]= { - ["x"]= 37, + ["x"]= 0, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/Assassin/NoxiousStrike.png"]= { - ["x"]= 74, + ["x"]= 37, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/Assassin/ToxicDelivery.png"]= { - ["x"]= 111, + ["x"]= 74, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/Assassin/UnstableInfusion.png"]= { - ["x"]= 148, + ["x"]= 111, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/AssassinAnointNotable.png"]= { - ["x"]= 185, + ["x"]= 148, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/AtlasTrees/AulBloodlineNotable.png"]= { - ["x"]= 222, + ["x"]= 185, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/AtlasTrees/BestiaryNotable4.png"]= { - ["x"]= 259, + ["x"]= 222, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/AtlasTrees/BloodLineOlrothNotable.png"]= { - ["x"]= 296, + ["x"]= 259, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/AtlasTrees/BoldUndertaking.png"]= { - ["x"]= 333, + ["x"]= 296, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/AtlasTrees/BreachNotable4.png"]= { - ["x"]= 370, + ["x"]= 333, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/AtlasTrees/DeliriumNotable1.png"]= { - ["x"]= 407, + ["x"]= 370, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/AtlasTrees/FarrulNotable1.png"]= { - ["x"]= 444, + ["x"]= 407, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/AtlasTrees/HarbingerNode1.png"]= { - ["x"]= 481, + ["x"]= 444, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/AtlasTrees/LyciaNotable1.png"]= { - ["x"]= 518, + ["x"]= 481, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/AtlasTrees/MorePrimalWisps.png"]= { - ["x"]= 555, + ["x"]= 518, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/AtlasTrees/MoreVividWisps.png"]= { - ["x"]= 592, + ["x"]= 555, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/AtlasTrees/MoreWildWisps.png"]= { - ["x"]= 629, + ["x"]= 592, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/AtlasTrees/TempestNotable1.png"]= { - ["x"]= 666, + ["x"]= 629, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/AtlasTrees/UltimatumNotable3.png"]= { - ["x"]= 703, + ["x"]= 666, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/AtlasTrees/UltimatumNotable4.png"]= { - ["x"]= 740, + ["x"]= 703, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/AttackBlindNotable.png"]= { - ["x"]= 777, + ["x"]= 740, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/AttackDamangeAndEvasionNotableIcon.png"]= { - ["x"]= 814, + ["x"]= 777, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/AttackPoisonNotable.png"]= { - ["x"]= 851, + ["x"]= 814, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/AuraEffectNotable.png"]= { - ["x"]= 888, + ["x"]= 851, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/AuraReservationNotable.png"]= { - ["x"]= 925, + ["x"]= 888, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/AvataroftheHunt2.png"]= { - ["x"]= 0, - ["y"]= 412, + ["x"]= 925, + ["y"]= 375, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/AvoidInterruptionFromCastingNotable.png"]= { - ["x"]= 37, - ["y"]= 412, + ["x"]= 962, + ["y"]= 375, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/AxeNotable1.png"]= { - ["x"]= 74, + ["x"]= 0, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/AxeNotable2.png"]= { - ["x"]= 111, + ["x"]= 37, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/AxeandSwordDamage.png"]= { - ["x"]= 148, + ["x"]= 74, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/AxesandAttackSpeed.png"]= { - ["x"]= 185, + ["x"]= 111, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/BannerAreaNotable.png"]= { - ["x"]= 222, + ["x"]= 148, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/BannerDurationNotable.png"]= { - ["x"]= 259, + ["x"]= 185, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/BannerEffectNotable.png"]= { - ["x"]= 296, + ["x"]= 222, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/BannerResourceAreaNotable.png"]= { - ["x"]= 333, + ["x"]= 259, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/BannersNotable.png"]= { - ["x"]= 370, + ["x"]= 296, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/BarragingProjectilesNotable.png"]= { - ["x"]= 407, + ["x"]= 333, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/BattleRouse.png"]= { - ["x"]= 444, + ["x"]= 370, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/Berserker/AspectOfCarnage.png"]= { - ["x"]= 481, + ["x"]= 407, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/Berserker/Blitz.png"]= { - ["x"]= 518, + ["x"]= 444, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/Berserker/CloakedAgony.png"]= { - ["x"]= 555, + ["x"]= 481, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/Berserker/CombatFrenzy.png"]= { - ["x"]= 592, + ["x"]= 518, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/Berserker/DefyPain.png"]= { - ["x"]= 629, + ["x"]= 555, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/Berserker/RiteOfRuin.png"]= { - ["x"]= 666, + ["x"]= 592, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/Berserker/WarBringer.png"]= { - ["x"]= 703, + ["x"]= 629, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/BeserkerAnointNotable.png"]= { - ["x"]= 740, + ["x"]= 666, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/BladeBarrierNotable.png"]= { - ["x"]= 777, + ["x"]= 703, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/BleedPoison.png"]= { - ["x"]= 814, + ["x"]= 740, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/BleedPoisonMitigateNotable.png"]= { - ["x"]= 851, + ["x"]= 777, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/BleedingNotable1.png"]= { - ["x"]= 888, + ["x"]= 814, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/BleedingNotable2.png"]= { - ["x"]= 925, + ["x"]= 851, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/BlockAttackDmgNotable.png"]= { + ["x"]= 888, + ["y"]= 412, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/BlockSpellDmgNotable.png"]= { + ["x"]= 925, + ["y"]= 412, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Blood2.png"]= { + ["x"]= 962, + ["y"]= 412, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/BloodPact.png"]= { ["x"]= 0, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/BlockSpellDmgNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/BloodSiphon.png"]= { ["x"]= 37, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Blood2.png"]= { + ["Art/2DArt/SkillIcons/passives/BloodyBludgeon.png"]= { ["x"]= 74, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/BloodPact.png"]= { + ["Art/2DArt/SkillIcons/passives/Boomerang.png"]= { ["x"]= 111, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/BloodSiphon.png"]= { + ["Art/2DArt/SkillIcons/passives/BowDamage.png"]= { ["x"]= 148, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/BloodyBludgeon.png"]= { + ["Art/2DArt/SkillIcons/passives/Brand2.png"]= { ["x"]= 185, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Boomerang.png"]= { + ["Art/2DArt/SkillIcons/passives/Brand4.png"]= { ["x"]= 222, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/BowDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/BrandDmgNotable.png"]= { ["x"]= 259, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Brand2.png"]= { + ["Art/2DArt/SkillIcons/passives/BreathofFlames2.png"]= { ["x"]= 296, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Brand4.png"]= { + ["Art/2DArt/SkillIcons/passives/BreathofLightening2.png"]= { ["x"]= 333, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/BrandDmgNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/BreathofRime2.png"]= { ["x"]= 370, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/BreathofFlames2.png"]= { + ["Art/2DArt/SkillIcons/passives/ByTheBlade.png"]= { ["x"]= 407, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/BreathofLightening2.png"]= { + ["Art/2DArt/SkillIcons/passives/CelestialPunishment.png"]= { ["x"]= 444, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/BreathofRime2.png"]= { + ["Art/2DArt/SkillIcons/passives/ChainingProjectiles.png"]= { ["x"]= 481, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ByTheBlade.png"]= { + ["Art/2DArt/SkillIcons/passives/Champion.png"]= { ["x"]= 518, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/CelestialPunishment.png"]= { + ["Art/2DArt/SkillIcons/passives/Champion/FirstStrikeLastFall.png"]= { ["x"]= 555, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ChainingProjectiles.png"]= { + ["Art/2DArt/SkillIcons/passives/Champion/Fortitude.png"]= { ["x"]= 592, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Champion.png"]= { + ["Art/2DArt/SkillIcons/passives/Champion/ImpalePassiveNotable.png"]= { ["x"]= 629, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Champion/FirstStrikeLastFall.png"]= { + ["Art/2DArt/SkillIcons/passives/Champion/Inpirational.png"]= { ["x"]= 666, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Champion/Fortitude.png"]= { + ["Art/2DArt/SkillIcons/passives/Champion/Unstopable.png"]= { ["x"]= 703, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Champion/ImpalePassiveNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Champion/WorthyCauses.png"]= { ["x"]= 740, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Champion/Inpirational.png"]= { + ["Art/2DArt/SkillIcons/passives/Champion/WorthyFoe.png"]= { ["x"]= 777, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Champion/Unstopable.png"]= { + ["Art/2DArt/SkillIcons/passives/ChampionAnointNotable.png"]= { ["x"]= 814, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Champion/WorthyCauses.png"]= { + ["Art/2DArt/SkillIcons/passives/ChaosDamage2.png"]= { ["x"]= 851, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Champion/WorthyFoe.png"]= { + ["Art/2DArt/SkillIcons/passives/ChaosDamageOverTimeNotable.png"]= { ["x"]= 888, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ChampionAnointNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/ChaosDamageOverTimeNotable2.png"]= { ["x"]= 925, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ChaosDamage2.png"]= { + ["Art/2DArt/SkillIcons/passives/ChaosResistNotable.png"]= { + ["x"]= 962, + ["y"]= 449, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ChaoticPotential.png"]= { ["x"]= 0, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ChaosDamageOverTimeNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/CheiftainAnointNotable.png"]= { ["x"]= 37, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ChaosDamageOverTimeNotable2.png"]= { + ["Art/2DArt/SkillIcons/passives/Chieftain/ArohunguiMoonsPresenceWarcry.png"]= { ["x"]= 74, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ChaosResistNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Chieftain/HinekoraDeathsFury.png"]= { ["x"]= 111, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ChaoticPotential.png"]= { + ["Art/2DArt/SkillIcons/passives/Chieftain/NgamahuFlamesAdvance.png"]= { ["x"]= 148, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/CheiftainAnointNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Chieftain/RamakoSunsLight.png"]= { ["x"]= 185, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Chieftain/ArohunguiMoonsPresenceWarcry.png"]= { + ["Art/2DArt/SkillIcons/passives/Chieftain/TasalioCleansingWater.png"]= { ["x"]= 222, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Chieftain/HinekoraDeathsFury.png"]= { + ["Art/2DArt/SkillIcons/passives/Chieftain/TukomahaWarsHerald.png"]= { ["x"]= 259, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Chieftain/NgamahuFlamesAdvance.png"]= { + ["Art/2DArt/SkillIcons/passives/Chieftain/ValakoStormsEmbrace.png"]= { ["x"]= 296, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Chieftain/RamakoSunsLight.png"]= { + ["Art/2DArt/SkillIcons/passives/ChillThemedNotable.png"]= { ["x"]= 333, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Chieftain/TasalioCleansingWater.png"]= { + ["Art/2DArt/SkillIcons/passives/ClawNotable1.png"]= { ["x"]= 370, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Chieftain/TukomahaWarsHerald.png"]= { + ["Art/2DArt/SkillIcons/passives/ClawNotable2.png"]= { ["x"]= 407, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Chieftain/ValakoStormsEmbrace.png"]= { + ["Art/2DArt/SkillIcons/passives/ClawsOfTheMagpie.png"]= { ["x"]= 444, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ChillThemedNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/CleverThief.png"]= { ["x"]= 481, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ClawNotable1.png"]= { + ["Art/2DArt/SkillIcons/passives/ColdAndFireHybridNotable.png"]= { ["x"]= 518, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ClawNotable2.png"]= { + ["Art/2DArt/SkillIcons/passives/ColdDamageEnemyNotable.png"]= { ["x"]= 555, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ClawsOfTheMagpie.png"]= { + ["Art/2DArt/SkillIcons/passives/ColdDamageOverTimeNotable.png"]= { ["x"]= 592, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/CleverThief.png"]= { + ["Art/2DArt/SkillIcons/passives/ColdResistNotable.png"]= { ["x"]= 629, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ColdAndFireHybridNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/ColdWeaponDmg.png"]= { ["x"]= 666, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ColdDamageEnemyNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/ColdheartedCalculation2.png"]= { ["x"]= 703, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ColdDamageOverTimeNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/CombatFocusNotable.png"]= { ["x"]= 740, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ColdResistNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/CombatStamina.png"]= { ["x"]= 777, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ColdWeaponDmg.png"]= { + ["Art/2DArt/SkillIcons/passives/CommandofSteel.png"]= { ["x"]= 814, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ColdheartedCalculation2.png"]= { + ["Art/2DArt/SkillIcons/passives/Constitution.png"]= { ["x"]= 851, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/CombatFocusNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Coordination.png"]= { ["x"]= 888, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/CombatStamina.png"]= { + ["Art/2DArt/SkillIcons/passives/CorpsesNotable.png"]= { ["x"]= 925, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/CommandofSteel.png"]= { + ["Art/2DArt/SkillIcons/passives/Corruption.png"]= { + ["x"]= 962, + ["y"]= 486, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/CritStrikeBleedingNotable.png"]= { ["x"]= 0, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Constitution.png"]= { + ["Art/2DArt/SkillIcons/passives/CurseAreaOfEffectNotable.png"]= { ["x"]= 37, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Coordination.png"]= { + ["Art/2DArt/SkillIcons/passives/CurseEffectNotable.png"]= { ["x"]= 74, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/CorpsesNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/CurseNotable.png"]= { ["x"]= 111, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Corruption.png"]= { + ["Art/2DArt/SkillIcons/passives/CurseNotable2.png"]= { ["x"]= 148, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/CritStrikeBleedingNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/CursemitigationclusterNotable.png"]= { ["x"]= 185, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/CurseAreaOfEffectNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/DaggerNotable1.png"]= { ["x"]= 222, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/CurseEffectNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/DaggerandClawDamage.png"]= { ["x"]= 259, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/CurseNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/DamageOverTimeNotable.png"]= { ["x"]= 296, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/CurseNotable2.png"]= { + ["Art/2DArt/SkillIcons/passives/DamageofMinionsNotable.png"]= { ["x"]= 333, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/CursemitigationclusterNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/DarkestHour.png"]= { ["x"]= 370, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DaggerNotable1.png"]= { + ["Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeFrenzyChargeNotable.png"]= { ["x"]= 407, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DaggerandClawDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/DeadEye/FarShot.png"]= { ["x"]= 444, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DamageOverTimeNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/DeadEye/GatherWinds.png"]= { ["x"]= 481, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DamageofMinionsNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/DeadEye/Ricochet.png"]= { ["x"]= 518, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DarkestHour.png"]= { + ["Art/2DArt/SkillIcons/passives/DeadeyeAnointNotable.png"]= { ["x"]= 555, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeFrenzyChargeNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/DeepBreathsNotable.png"]= { ["x"]= 592, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DeadEye/FarShot.png"]= { + ["Art/2DArt/SkillIcons/passives/DiamondSkin2.png"]= { ["x"]= 629, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DeadEye/GatherWinds.png"]= { + ["Art/2DArt/SkillIcons/passives/DireTorment.png"]= { ["x"]= 666, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DeadEye/Ricochet.png"]= { + ["Art/2DArt/SkillIcons/passives/DivineFury.png"]= { ["x"]= 703, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DeadeyeAnointNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/DivineWrath.png"]= { ["x"]= 740, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DeepBreathsNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/DmgHeraldSkillsNotable.png"]= { ["x"]= 777, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DiamondSkin2.png"]= { + ["Art/2DArt/SkillIcons/passives/DmgWhenChannelSkillsNotable.png"]= { ["x"]= 814, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DireTorment.png"]= { + ["Art/2DArt/SkillIcons/passives/DodgeAtksNotable.png"]= { ["x"]= 851, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DivineFury.png"]= { + ["Art/2DArt/SkillIcons/passives/Dreamer.png"]= { ["x"]= 888, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DivineWrath.png"]= { + ["Art/2DArt/SkillIcons/passives/DruidicRite.png"]= { ["x"]= 925, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DmgHeraldSkillsNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/DualWieldNotable.png"]= { + ["x"]= 962, + ["y"]= 523, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/DualWieldingBlockNotable.png"]= { ["x"]= 0, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DmgWhenChannelSkillsNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/DualWieldingDamage.png"]= { ["x"]= 37, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DodgeAtksNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/DurationofMinionsNotable.png"]= { ["x"]= 74, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Dreamer.png"]= { + ["Art/2DArt/SkillIcons/passives/ElementalAilmentResistance.png"]= { ["x"]= 111, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DruidicRite.png"]= { + ["Art/2DArt/SkillIcons/passives/ElementalDamagewithAttacks2.png"]= { ["x"]= 148, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DualWieldNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/ElementalDominion2.png"]= { ["x"]= 185, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DualWieldingBlockNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/ElementalFocus.png"]= { ["x"]= 222, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DualWieldingDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/Elementalist/ChillSpecialisation.png"]= { ["x"]= 259, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DurationofMinionsNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Elementalist/ElemancerIcon.png"]= { ["x"]= 296, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ElementalAilmentResistance.png"]= { + ["Art/2DArt/SkillIcons/passives/Elementalist/IgniteSpecialisation.png"]= { ["x"]= 333, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ElementalDamagewithAttacks2.png"]= { + ["Art/2DArt/SkillIcons/passives/Elementalist/IridescentFlesh.png"]= { ["x"]= 370, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ElementalDominion2.png"]= { + ["Art/2DArt/SkillIcons/passives/Elementalist/LiegeOfThePrimordial.png"]= { ["x"]= 407, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ElementalFocus.png"]= { + ["Art/2DArt/SkillIcons/passives/Elementalist/PendulumOfDestruction.png"]= { ["x"]= 444, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Elementalist/ChillSpecialisation.png"]= { + ["Art/2DArt/SkillIcons/passives/Elementalist/PrimevalForce.png"]= { ["x"]= 481, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Elementalist/ElemancerIcon.png"]= { + ["Art/2DArt/SkillIcons/passives/Elementalist/ShockSpecialisation.png"]= { ["x"]= 518, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Elementalist/IgniteSpecialisation.png"]= { + ["Art/2DArt/SkillIcons/passives/ElementalistAnointNotable.png"]= { ["x"]= 555, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Elementalist/IridescentFlesh.png"]= { + ["Art/2DArt/SkillIcons/passives/EnduranceChargeNotable.png"]= { ["x"]= 592, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Elementalist/LiegeOfThePrimordial.png"]= { + ["Art/2DArt/SkillIcons/passives/EnergyShieldNotable.png"]= { ["x"]= 629, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Elementalist/PendulumOfDestruction.png"]= { + ["Art/2DArt/SkillIcons/passives/Entropy.png"]= { ["x"]= 666, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Elementalist/PrimevalForce.png"]= { + ["Art/2DArt/SkillIcons/passives/EscalationNotable.png"]= { ["x"]= 703, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Elementalist/ShockSpecialisation.png"]= { + ["Art/2DArt/SkillIcons/passives/EssenceSurge.png"]= { ["x"]= 740, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ElementalistAnointNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/EvasionAndBlindNotable.png"]= { ["x"]= 777, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/EnduranceChargeNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/EvasionAndPhasingNotable.png"]= { ["x"]= 814, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/EnergyShieldNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/EvasionNotable.png"]= { ["x"]= 851, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Entropy.png"]= { + ["Art/2DArt/SkillIcons/passives/ExceptionalPerformance.png"]= { ["x"]= 888, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/EscalationNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/ExplosiveRunes.png"]= { ["x"]= 925, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/EssenceSurge.png"]= { + ["Art/2DArt/SkillIcons/passives/EyesOfTheDeadly.png"]= { + ["x"]= 962, + ["y"]= 560, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/EyesOfThePowerful.png"]= { ["x"]= 0, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/EvasionAndBlindNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/EyesOfTheSavant.png"]= { ["x"]= 37, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/EvasionAndPhasingNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/FasterBleeding2.png"]= { ["x"]= 74, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/EvasionNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/FatalBlade.png"]= { ["x"]= 111, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ExceptionalPerformance.png"]= { + ["Art/2DArt/SkillIcons/passives/FireAilment.png"]= { ["x"]= 148, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ExplosiveRunes.png"]= { + ["Art/2DArt/SkillIcons/passives/FireDamageOverTimeNotable.png"]= { ["x"]= 185, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/EyesOfTheDeadly.png"]= { + ["Art/2DArt/SkillIcons/passives/FireResistNotable.png"]= { ["x"]= 222, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/EyesOfThePowerful.png"]= { + ["Art/2DArt/SkillIcons/passives/FlaskDuration.png"]= { ["x"]= 259, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/EyesOfTheSavant.png"]= { + ["Art/2DArt/SkillIcons/passives/FlaskNotableCritStrikeRecharge.png"]= { ["x"]= 296, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/FasterBleeding2.png"]= { + ["Art/2DArt/SkillIcons/passives/FlaskNotableFlasksLastLonger.png"]= { ["x"]= 333, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/FatalBlade.png"]= { + ["Art/2DArt/SkillIcons/passives/ForceOfNature.png"]= { ["x"]= 370, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/FireAilment.png"]= { + ["Art/2DArt/SkillIcons/passives/ForkingProjectilesNotable.png"]= { ["x"]= 407, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/FireDamageOverTimeNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/FortifyNotable1.png"]= { ["x"]= 444, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/FireResistNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/FortifyNotable2.png"]= { ["x"]= 481, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/FlaskDuration.png"]= { + ["Art/2DArt/SkillIcons/passives/FrenzyChargeNotable.png"]= { ["x"]= 518, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/FlaskNotableCritStrikeRecharge.png"]= { + ["Art/2DArt/SkillIcons/passives/GenericBlockNotable1.png"]= { ["x"]= 555, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/FlaskNotableFlasksLastLonger.png"]= { + ["Art/2DArt/SkillIcons/passives/GenericBlockNotable2.png"]= { ["x"]= 592, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ForceOfNature.png"]= { + ["Art/2DArt/SkillIcons/passives/GenericSpellBlockNotable.png"]= { ["x"]= 629, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ForkingProjectilesNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Gladiator/GLADBloodAndSand.png"]= { ["x"]= 666, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/FortifyNotable1.png"]= { + ["Art/2DArt/SkillIcons/passives/Gladiator/GLADBloodInEyes.png"]= { ["x"]= 703, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/FortifyNotable2.png"]= { + ["Art/2DArt/SkillIcons/passives/Gladiator/GLADPainForged.png"]= { ["x"]= 740, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/FrenzyChargeNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Gladiator/GLADVersitileCombatant.png"]= { ["x"]= 777, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/GenericBlockNotable1.png"]= { + ["Art/2DArt/SkillIcons/passives/Gladiator/GLADViolence.png"]= { ["x"]= 814, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/GenericBlockNotable2.png"]= { + ["Art/2DArt/SkillIcons/passives/Gladiator/GLADViolentRetaliation.png"]= { ["x"]= 851, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/GenericSpellBlockNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Gladiator/GladiatorDualWiledSwordAxeNotable.png"]= { ["x"]= 888, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Gladiator/GLADBloodAndSand.png"]= { + ["Art/2DArt/SkillIcons/passives/GladiatorAnointNotable.png"]= { ["x"]= 925, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Gladiator/GLADBloodInEyes.png"]= { + ["Art/2DArt/SkillIcons/passives/GolemsNotable.png"]= { + ["x"]= 962, + ["y"]= 597, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/GreenProjectileAttackNotable.png"]= { ["x"]= 0, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Gladiator/GLADPainForged.png"]= { + ["Art/2DArt/SkillIcons/passives/GrowthandDecay.png"]= { ["x"]= 37, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Gladiator/GLADVersitileCombatant.png"]= { + ["Art/2DArt/SkillIcons/passives/Guardian/GuardianHallowingFlameNotable.png"]= { ["x"]= 74, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Gladiator/GLADViolence.png"]= { + ["Art/2DArt/SkillIcons/passives/Guardian/HarmonyOfPurpose.png"]= { ["x"]= 111, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Gladiator/GLADViolentRetaliation.png"]= { + ["Art/2DArt/SkillIcons/passives/Guardian/Radient Crusade.png"]= { ["x"]= 148, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Gladiator/GladiatorDualWiledSwordAxeNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Guardian/RadientFaith.png"]= { ["x"]= 185, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/GladiatorAnointNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Guardian/ShieldMastery.png"]= { ["x"]= 222, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/GolemsNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Guardian/TimeOfNeed.png"]= { ["x"]= 259, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/GreenProjectileAttackNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Guardian/Unwavering Crusade.png"]= { ["x"]= 296, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/GrowthandDecay.png"]= { + ["Art/2DArt/SkillIcons/passives/Guardian/UnwaveringFaith.png"]= { ["x"]= 333, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Guardian/GuardianHallowingFlameNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/GuardianAnointNotable.png"]= { ["x"]= 370, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Guardian/HarmonyOfPurpose.png"]= { + ["Art/2DArt/SkillIcons/passives/Harrier.png"]= { ["x"]= 407, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Guardian/Radient Crusade.png"]= { + ["Art/2DArt/SkillIcons/passives/HeartandSoul.png"]= { ["x"]= 444, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Guardian/RadientFaith.png"]= { + ["Art/2DArt/SkillIcons/passives/HeartofChaos.png"]= { ["x"]= 481, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Guardian/ShieldMastery.png"]= { + ["Art/2DArt/SkillIcons/passives/HeartoftheOak.png"]= { ["x"]= 518, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Guardian/TimeOfNeed.png"]= { + ["Art/2DArt/SkillIcons/passives/Hearty.png"]= { ["x"]= 555, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Guardian/Unwavering Crusade.png"]= { + ["Art/2DArt/SkillIcons/passives/HeirophantAnointNotable.png"]= { ["x"]= 592, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Guardian/UnwaveringFaith.png"]= { + ["Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.png"]= { ["x"]= 629, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/GuardianAnointNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/HeraldDamageNotable.png"]= { ["x"]= 666, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Harrier.png"]= { + ["Art/2DArt/SkillIcons/passives/HeraldReservation.png"]= { ["x"]= 703, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/HeartandSoul.png"]= { + ["Art/2DArt/SkillIcons/passives/Hierophant/AncestralZeal.png"]= { ["x"]= 740, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/HeartofChaos.png"]= { + ["Art/2DArt/SkillIcons/passives/Hierophant/ArcaneSurge.png"]= { ["x"]= 777, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/HeartoftheOak.png"]= { + ["Art/2DArt/SkillIcons/passives/Hierophant/DiscipleOfRuin.png"]= { ["x"]= 814, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Hearty.png"]= { + ["Art/2DArt/SkillIcons/passives/Hierophant/ItemAugment.png"]= { ["x"]= 851, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/HeirophantAnointNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Hierophant/MindOverBeing.png"]= { ["x"]= 888, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.png"]= { + ["Art/2DArt/SkillIcons/passives/Hierophant/MindOverBody.png"]= { ["x"]= 925, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/HeraldDamageNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Hierophant/SignOfPurpose.png"]= { + ["x"]= 962, + ["y"]= 634, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Hierophant/SpiritualEmpowerment.png"]= { ["x"]= 0, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/HeraldReservation.png"]= { + ["Art/2DArt/SkillIcons/passives/HiredKiller2.png"]= { ["x"]= 37, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Hierophant/AncestralZeal.png"]= { + ["Art/2DArt/SkillIcons/passives/HoldingShieldDamage.png"]= { ["x"]= 74, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Hierophant/ArcaneSurge.png"]= { + ["Art/2DArt/SkillIcons/passives/Hunter.png"]= { ["x"]= 111, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Hierophant/DiscipleOfRuin.png"]= { + ["Art/2DArt/SkillIcons/passives/IgniteAshNotable.png"]= { ["x"]= 148, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Hierophant/ItemAugment.png"]= { + ["Art/2DArt/SkillIcons/passives/IgniteAttackNotable.png"]= { ["x"]= 185, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Hierophant/MindOverBeing.png"]= { + ["Art/2DArt/SkillIcons/passives/IgniteBleedNotable.png"]= { ["x"]= 222, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Hierophant/MindOverBody.png"]= { + ["Art/2DArt/SkillIcons/passives/IgniteStunNotable.png"]= { ["x"]= 259, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Hierophant/SignOfPurpose.png"]= { + ["Art/2DArt/SkillIcons/passives/IgnorePain.png"]= { ["x"]= 296, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Hierophant/SpiritualEmpowerment.png"]= { + ["Art/2DArt/SkillIcons/passives/Impale1HandNotable.png"]= { ["x"]= 333, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/HiredKiller2.png"]= { + ["Art/2DArt/SkillIcons/passives/ImpaleEffectNotable.png"]= { ["x"]= 370, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/HoldingShieldDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/ImpaleNotable1.png"]= { ["x"]= 407, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Hunter.png"]= { + ["Art/2DArt/SkillIcons/passives/ImpaleNotable2.png"]= { ["x"]= 444, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/IgniteAshNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreaseCritChanceNotable.png"]= { ["x"]= 481, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/IgniteAttackNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreaseMinionLifeNotable.png"]= { ["x"]= 518, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/IgniteBleedNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreasedAttackDamageNotable.png"]= { ["x"]= 555, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/IgniteStunNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreasedChaosDamage.png"]= { ["x"]= 592, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/IgnorePain.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreasedColdDamage.png"]= { ["x"]= 629, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Impale1HandNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreasedElementalDamage.png"]= { ["x"]= 666, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ImpaleEffectNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreasedFireDamage.png"]= { ["x"]= 703, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ImpaleNotable1.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreasedLightningDamage.png"]= { ["x"]= 740, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ImpaleNotable2.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreasedManaCostNotable.png"]= { ["x"]= 777, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/IncreaseCritChanceNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreasedMaximumLifeNotable.png"]= { ["x"]= 814, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/IncreaseMinionLifeNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreasedMinionDamageNotable.png"]= { ["x"]= 851, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/IncreasedAttackDamageNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreasedNonDamageAilmentNotable.png"]= { ["x"]= 888, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/IncreasedChaosDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.png"]= { ["x"]= 925, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/IncreasedColdDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreasedSpellDamageNode.png"]= { + ["x"]= 962, + ["y"]= 671, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/IncreasedSpellDamageNotable.png"]= { ["x"]= 0, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/IncreasedElementalDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreasedWarcryNotable.png"]= { ["x"]= 37, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/IncreasedFireDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/InfusedFlesh.png"]= { ["x"]= 74, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/IncreasedLightningDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/InquisitorAnointNotable.png"]= { ["x"]= 111, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/IncreasedManaCostNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Inquistitor/ElementalDomination.png"]= { ["x"]= 148, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/IncreasedMaximumLifeNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Inquistitor/ElementalForce.png"]= { ["x"]= 185, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/IncreasedMinionDamageNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Inquistitor/ElementalMastery.png"]= { ["x"]= 222, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/IncreasedNonDamageAilmentNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Inquistitor/GloryOfTheSavant.png"]= { ["x"]= 259, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/Inquistitor/InstrumentsOfVirtue.png"]= { ["x"]= 296, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/IncreasedSpellDamageNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Inquistitor/InstrumentsofZeal.png"]= { ["x"]= 333, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/IncreasedSpellDamageNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Inquistitor/Sanctify.png"]= { ["x"]= 370, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/IncreasedWarcryNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Inspiration.png"]= { ["x"]= 407, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/InfusedFlesh.png"]= { + ["Art/2DArt/SkillIcons/passives/IntensifyNotable.png"]= { ["x"]= 444, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/InquisitorAnointNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Juggernaut/JuggernautArmourNotable.png"]= { ["x"]= 481, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Inquistitor/ElementalDomination.png"]= { + ["Art/2DArt/SkillIcons/passives/Juggernaut/Unbreakable.png"]= { ["x"]= 518, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Inquistitor/ElementalForce.png"]= { + ["Art/2DArt/SkillIcons/passives/Juggernaut/Undeniable.png"]= { ["x"]= 555, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Inquistitor/ElementalMastery.png"]= { + ["Art/2DArt/SkillIcons/passives/Juggernaut/Unflinching.png"]= { ["x"]= 592, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Inquistitor/GloryOfTheSavant.png"]= { + ["Art/2DArt/SkillIcons/passives/Juggernaut/Unrelenting.png"]= { ["x"]= 629, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Inquistitor/InstrumentsOfVirtue.png"]= { + ["Art/2DArt/SkillIcons/passives/Juggernaut/Unstoppable.png"]= { ["x"]= 666, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Inquistitor/InstrumentsofZeal.png"]= { + ["Art/2DArt/SkillIcons/passives/Juggernaut/Unyielding.png"]= { ["x"]= 703, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Inquistitor/Sanctify.png"]= { + ["Art/2DArt/SkillIcons/passives/JuggernautAnointNotable.png"]= { ["x"]= 740, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Inspiration.png"]= { + ["Art/2DArt/SkillIcons/passives/KeystoneArmourMaster.png"]= { ["x"]= 777, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/IntensifyNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/KeystoneWhispersOfDoom.png"]= { ["x"]= 814, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Juggernaut/JuggernautArmourNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/LifeArmourAndEvasion.png"]= { ["x"]= 851, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Juggernaut/Unbreakable.png"]= { + ["Art/2DArt/SkillIcons/passives/LifeFlasks.png"]= { ["x"]= 888, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Juggernaut/Undeniable.png"]= { + ["Art/2DArt/SkillIcons/passives/LifeGainOnHitNotable.png"]= { ["x"]= 925, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Juggernaut/Unflinching.png"]= { + ["Art/2DArt/SkillIcons/passives/LifeManaFlasksrecovery.png"]= { + ["x"]= 962, + ["y"]= 708, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/LifeRecoupNotable.png"]= { ["x"]= 0, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Juggernaut/Unrelenting.png"]= { + ["Art/2DArt/SkillIcons/passives/LifeRegenerationGainRegenNotable.png"]= { ["x"]= 37, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Juggernaut/Unstoppable.png"]= { + ["Art/2DArt/SkillIcons/passives/LifeRegenerationLowlifeBonusNotable.png"]= { ["x"]= 74, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Juggernaut/Unyielding.png"]= { + ["Art/2DArt/SkillIcons/passives/LifeandCursesN.png"]= { ["x"]= 111, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/JuggernautAnointNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/LifeandManaFlasks.png"]= { ["x"]= 148, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/KeystoneWhispersOfDoom.png"]= { + ["Art/2DArt/SkillIcons/passives/LifeandResistancesofMinions.png"]= { ["x"]= 185, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/LifeArmourAndEvasion.png"]= { + ["Art/2DArt/SkillIcons/passives/LightOfDivinity.png"]= { ["x"]= 222, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/LifeFlasks.png"]= { + ["Art/2DArt/SkillIcons/passives/LightningResistNotable.png"]= { ["x"]= 259, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/LifeGainOnHitNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/LinkNotable3.png"]= { ["x"]= 296, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/LifeManaFlasksrecovery.png"]= { + ["Art/2DArt/SkillIcons/passives/LinkNotable4.png"]= { ["x"]= 333, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/LifeRecoupNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/LustforCarnage.png"]= { ["x"]= 370, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/LifeRegenerationGainRegenNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/MaceNotable1.png"]= { ["x"]= 407, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/LifeRegenerationLowlifeBonusNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/MaceNotable2.png"]= { ["x"]= 444, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/LifeandCursesN.png"]= { + ["Art/2DArt/SkillIcons/passives/MaceandStaffDamage.png"]= { ["x"]= 481, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/LifeandManaFlasks.png"]= { + ["Art/2DArt/SkillIcons/passives/ManaDamageKeystone.png"]= { ["x"]= 518, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/LifeandResistancesofMinions.png"]= { + ["Art/2DArt/SkillIcons/passives/ManaFlasksOften.png"]= { ["x"]= 555, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/LightOfDivinity.png"]= { + ["Art/2DArt/SkillIcons/passives/ManaGuardNotable.png"]= { ["x"]= 592, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/LightningResistNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/ManaNotable.png"]= { ["x"]= 629, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/LinkNotable3.png"]= { + ["Art/2DArt/SkillIcons/passives/ManaandArcaneSurge.png"]= { ["x"]= 666, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/LinkNotable4.png"]= { + ["Art/2DArt/SkillIcons/passives/ManaandSpellBlock.png"]= { ["x"]= 703, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/LustforCarnage.png"]= { + ["Art/2DArt/SkillIcons/passives/ManaandSpellDamage.png"]= { ["x"]= 740, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MaceNotable1.png"]= { + ["Art/2DArt/SkillIcons/passives/Mark.png"]= { ["x"]= 777, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MaceNotable2.png"]= { + ["Art/2DArt/SkillIcons/passives/MarkNotable1.png"]= { ["x"]= 814, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MaceandStaffDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/MarkNotable2.png"]= { ["x"]= 851, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ManaDamageKeystone.png"]= { + ["Art/2DArt/SkillIcons/passives/MarkNotableIncreasedEffect.png"]= { ["x"]= 888, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ManaFlasksOften.png"]= { + ["Art/2DArt/SkillIcons/passives/MarkNotableMarkSpellRecently.png"]= { ["x"]= 925, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ManaGuardNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/MartialExperience.png"]= { + ["x"]= 962, + ["y"]= 745, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/MasterofForce.png"]= { ["x"]= 0, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ManaNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/MaxElementalResistNotable.png"]= { ["x"]= 37, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ManaandArcaneSurge.png"]= { + ["Art/2DArt/SkillIcons/passives/MaxManaNotable.png"]= { ["x"]= 74, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ManaandSpellBlock.png"]= { + ["Art/2DArt/SkillIcons/passives/MaximumElementalResistances2.png"]= { ["x"]= 111, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ManaandSpellDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/MeasuredFuryNotable.png"]= { ["x"]= 148, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Mark.png"]= { + ["Art/2DArt/SkillIcons/passives/MeleeAoENode.png"]= { ["x"]= 185, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MarkNotable1.png"]= { + ["Art/2DArt/SkillIcons/passives/MeleeAoENotable.png"]= { ["x"]= 222, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MarkNotable2.png"]= { + ["Art/2DArt/SkillIcons/passives/MeleeCriticalStrikesNotable.png"]= { ["x"]= 259, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MarkNotableIncreasedEffect.png"]= { + ["Art/2DArt/SkillIcons/passives/MeleeFireNotable.png"]= { ["x"]= 296, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MarkNotableMarkSpellRecently.png"]= { + ["Art/2DArt/SkillIcons/passives/MeleeRange2.png"]= { ["x"]= 333, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MartialExperience.png"]= { + ["Art/2DArt/SkillIcons/passives/MeleeUtility.png"]= { ["x"]= 370, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MasterofForce.png"]= { + ["Art/2DArt/SkillIcons/passives/Meleerange.png"]= { ["x"]= 407, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MaxElementalResistNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/MentalRapidity.png"]= { ["x"]= 444, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MaxManaNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/MindPact.png"]= { ["x"]= 481, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MaximumElementalResistances2.png"]= { + ["Art/2DArt/SkillIcons/passives/MineAreaOfEffectNotable.png"]= { ["x"]= 518, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MeasuredFuryNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/MineCriticalStrikesNotable.png"]= { ["x"]= 555, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MeleeAoENode.png"]= { + ["Art/2DArt/SkillIcons/passives/MineManaReservationNotable.png"]= { ["x"]= 592, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MeleeAoENotable.png"]= { + ["Art/2DArt/SkillIcons/passives/MineTrap.png"]= { ["x"]= 629, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MeleeCriticalStrikesNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/MinionDmgHeraldSkillsNotable.png"]= { ["x"]= 666, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MeleeFireNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Mirage.png"]= { ["x"]= 703, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MeleeRange2.png"]= { + ["Art/2DArt/SkillIcons/passives/NaturalAuthorityNotable.png"]= { ["x"]= 740, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MeleeUtility.png"]= { + ["Art/2DArt/SkillIcons/passives/Necromancer/CommandingTheDarkness.png"]= { ["x"]= 777, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Meleerange.png"]= { + ["Art/2DArt/SkillIcons/passives/Necromancer/CorpseConsumptionNotable2.png"]= { ["x"]= 814, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MentalRapidity.png"]= { + ["Art/2DArt/SkillIcons/passives/Necromancer/DefensiveMinionNotable.png"]= { ["x"]= 851, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MindPact.png"]= { + ["Art/2DArt/SkillIcons/passives/Necromancer/EssenceGlutton.png"]= { ["x"]= 888, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MineAreaOfEffectNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Necromancer/GenericMinionNotable.png"]= { ["x"]= 925, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MineCriticalStrikesNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Necromancer/GiftsOfTheDamned.png"]= { + ["x"]= 962, + ["y"]= 782, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Necromancer/OffensiveMinionNotable.png"]= { ["x"]= 0, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MineManaReservationNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Necromancer/PlagueBringer.png"]= { ["x"]= 37, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MineTrap.png"]= { + ["Art/2DArt/SkillIcons/passives/NecromancerAnointNotable.png"]= { ["x"]= 74, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MinionDmgHeraldSkillsNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Occultist/FatefulEchoes.png"]= { ["x"]= 111, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Mirage.png"]= { + ["Art/2DArt/SkillIcons/passives/Occultist/FrigidWake.png"]= { ["x"]= 148, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/NaturalAuthorityNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Occultist/LotusExtract.png"]= { ["x"]= 185, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Necromancer/CommandingTheDarkness.png"]= { + ["Art/2DArt/SkillIcons/passives/Occultist/SoulCatalyst.png"]= { ["x"]= 222, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Necromancer/CorpseConsumptionNotable2.png"]= { + ["Art/2DArt/SkillIcons/passives/Occultist/VoidBeacon.png"]= { ["x"]= 259, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Necromancer/DefensiveMinionNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Occultist/VowOfDamnation.png"]= { ["x"]= 296, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Necromancer/EssenceGlutton.png"]= { + ["Art/2DArt/SkillIcons/passives/Occultist/WitheringPresence.png"]= { ["x"]= 333, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Necromancer/GenericMinionNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/OccultistAnointNotable.png"]= { ["x"]= 370, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Necromancer/GiftsOfTheDamned.png"]= { + ["Art/2DArt/SkillIcons/passives/OneHandedPhysicalAndLeechNotable.png"]= { ["x"]= 407, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Necromancer/OffensiveMinionNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/PathFinder/AlchemistGift.png"]= { ["x"]= 444, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Necromancer/PlagueBringer.png"]= { + ["Art/2DArt/SkillIcons/passives/PathFinder/MasterAlchemist.png"]= { ["x"]= 481, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/NecromancerAnointNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/PathFinder/MasterHerbalist.png"]= { ["x"]= 518, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Occultist/FatefulEchoes.png"]= { + ["Art/2DArt/SkillIcons/passives/PathFinder/MasterSurgeon.png"]= { ["x"]= 555, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Occultist/FrigidWake.png"]= { + ["Art/2DArt/SkillIcons/passives/PathFinder/Master Toxicist.png"]= { ["x"]= 592, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Occultist/LotusExtract.png"]= { + ["Art/2DArt/SkillIcons/passives/PathFinder/NaturesAdrenaline.png"]= { ["x"]= 629, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Occultist/SoulCatalyst.png"]= { + ["Art/2DArt/SkillIcons/passives/PathFinder/VeteranBowyer.png"]= { ["x"]= 666, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Occultist/VoidBeacon.png"]= { + ["Art/2DArt/SkillIcons/passives/PathfinderAnointNotable.png"]= { ["x"]= 703, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Occultist/VowOfDamnation.png"]= { + ["Art/2DArt/SkillIcons/passives/PhysicalDamageNotable.png"]= { ["x"]= 740, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Occultist/WitheringPresence.png"]= { + ["Art/2DArt/SkillIcons/passives/PhysicalDamageNotableGreen.png"]= { ["x"]= 777, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/OccultistAnointNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeHybrid.png"]= { ["x"]= 814, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/OneHandedPhysicalAndLeechNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNotable.png"]= { ["x"]= 851, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/PathFinder/AlchemistGift.png"]= { + ["Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimenotable1.png"]= { ["x"]= 888, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/PathFinder/MasterAlchemist.png"]= { + ["Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimenotable2.png"]= { ["x"]= 925, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/PathFinder/MasterHerbalist.png"]= { + ["Art/2DArt/SkillIcons/passives/Poison.png"]= { + ["x"]= 962, + ["y"]= 819, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/PoisonSpellsNotable.png"]= { ["x"]= 0, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/PathFinder/MasterSurgeon.png"]= { + ["Art/2DArt/SkillIcons/passives/PowerChargeNotable.png"]= { ["x"]= 37, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/PathFinder/Master Toxicist.png"]= { + ["Art/2DArt/SkillIcons/passives/Primalist/PrimalistCorpseLoot.png"]= { ["x"]= 74, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/PathFinder/NaturesAdrenaline.png"]= { + ["Art/2DArt/SkillIcons/passives/Primalist/PrimalistInventoryExpansion.png"]= { ["x"]= 111, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/PathFinder/VeteranBowyer.png"]= { + ["Art/2DArt/SkillIcons/passives/ProfaneChemistry.png"]= { ["x"]= 148, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/PathfinderAnointNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/ProjectileDmgNotable.png"]= { ["x"]= 185, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/PhysicalDamageNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/ProjectilesNotable.png"]= { ["x"]= 222, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/PhysicalDamageNotableGreen.png"]= { + ["Art/2DArt/SkillIcons/passives/ProtectiveWinds.png"]= { ["x"]= 259, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeHybrid.png"]= { + ["Art/2DArt/SkillIcons/passives/QuickRecovery.png"]= { ["x"]= 296, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/RageNotable.png"]= { ["x"]= 333, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimenotable1.png"]= { + ["Art/2DArt/SkillIcons/passives/RageNotable1.png"]= { ["x"]= 370, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimenotable2.png"]= { + ["Art/2DArt/SkillIcons/passives/RageNotable2.png"]= { ["x"]= 407, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Poison.png"]= { + ["Art/2DArt/SkillIcons/passives/RageNotable3.png"]= { ["x"]= 444, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/PoisonSpellsNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/RangedTotemCriticalStrikes.png"]= { ["x"]= 481, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/PowerChargeNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/RangedTotemOffensive.png"]= { ["x"]= 518, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Primalist/PrimalistCorpseLoot.png"]= { + ["Art/2DArt/SkillIcons/passives/RedHolyAttackNotable.png"]= { ["x"]= 555, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Primalist/PrimalistInventoryExpansion.png"]= { + ["Art/2DArt/SkillIcons/passives/Redemption.png"]= { ["x"]= 592, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ProfaneChemistry.png"]= { + ["Art/2DArt/SkillIcons/passives/ReducedManaNotable.png"]= { ["x"]= 629, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ProjectileDmgNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/ReducedProjectileSpeedNotable.png"]= { ["x"]= 666, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ProjectilesNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNotable.png"]= { ["x"]= 703, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ProtectiveWinds.png"]= { + ["Art/2DArt/SkillIcons/passives/Resourcefulness.png"]= { ["x"]= 740, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/QuickRecovery.png"]= { + ["Art/2DArt/SkillIcons/passives/Retaliation.png"]= { ["x"]= 777, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/RageNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/RetaliationAoE.png"]= { ["x"]= 814, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/RageNotable1.png"]= { + ["Art/2DArt/SkillIcons/passives/RetaliationAttackBlock.png"]= { ["x"]= 851, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/RageNotable2.png"]= { + ["Art/2DArt/SkillIcons/passives/RetaliationDurationCooldown.png"]= { ["x"]= 888, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/RageNotable3.png"]= { + ["Art/2DArt/SkillIcons/passives/RetaliationSkillDamage.png"]= { ["x"]= 925, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/RangedTotemCriticalStrikes.png"]= { + ["Art/2DArt/SkillIcons/passives/RetaliationSpellBlock.png"]= { + ["x"]= 962, + ["y"]= 856, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/RetaliationStun.png"]= { ["x"]= 0, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/RangedTotemOffensive.png"]= { + ["Art/2DArt/SkillIcons/passives/Retribution.png"]= { ["x"]= 37, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/RedHolyAttackNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Revelry.png"]= { ["x"]= 74, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Redemption.png"]= { + ["Art/2DArt/SkillIcons/passives/RighteousArmy.png"]= { ["x"]= 111, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ReducedManaNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Righteous Decree.png"]= { ["x"]= 148, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ReducedProjectileSpeedNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/RitualBloodLineNotable.png"]= { ["x"]= 185, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Robust.png"]= { ["x"]= 222, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Resourcefulness.png"]= { + ["Art/2DArt/SkillIcons/passives/Saboteur/BlindedAssult.png"]= { ["x"]= 259, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Retaliation.png"]= { + ["Art/2DArt/SkillIcons/passives/Saboteur/BombSpecialist.png"]= { ["x"]= 296, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/RetaliationAoE.png"]= { + ["Art/2DArt/SkillIcons/passives/Saboteur/ChainReaction.png"]= { ["x"]= 333, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/RetaliationAttackBlock.png"]= { + ["Art/2DArt/SkillIcons/passives/Saboteur/DemolitionSpecialist.png"]= { ["x"]= 370, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/RetaliationDurationCooldown.png"]= { + ["Art/2DArt/SkillIcons/passives/Saboteur/ExplosivesExpert.png"]= { ["x"]= 407, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/RetaliationSkillDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/Saboteur/LikeClockworkNotable.png"]= { ["x"]= 444, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/RetaliationSpellBlock.png"]= { + ["Art/2DArt/SkillIcons/passives/Saboteur/PerfectCrime.png"]= { ["x"]= 481, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/RetaliationStun.png"]= { + ["Art/2DArt/SkillIcons/passives/Saboteur/ShadowsDarknessBlind.png"]= { ["x"]= 518, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Retribution.png"]= { + ["Art/2DArt/SkillIcons/passives/Saboteur/ShrapnelSpecialist.png"]= { ["x"]= 555, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Revelry.png"]= { + ["Art/2DArt/SkillIcons/passives/SaboteurAnointNotable.png"]= { ["x"]= 592, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/RighteousArmy.png"]= { + ["Art/2DArt/SkillIcons/passives/Sanctuary.png"]= { ["x"]= 629, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Righteous Decree.png"]= { + ["Art/2DArt/SkillIcons/passives/SareshBloodlineNotable1.png"]= { ["x"]= 666, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/RitualBloodLineNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/SareshBloodlineNotable3.png"]= { ["x"]= 703, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Robust.png"]= { + ["Art/2DArt/SkillIcons/passives/SareshBloodlineNoteble2.png"]= { ["x"]= 740, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Saboteur/BlindedAssult.png"]= { + ["Art/2DArt/SkillIcons/passives/SavantPath.png"]= { ["x"]= 777, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Saboteur/BombSpecialist.png"]= { + ["Art/2DArt/SkillIcons/passives/SearingHeat.png"]= { ["x"]= 814, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Saboteur/ChainReaction.png"]= { + ["Art/2DArt/SkillIcons/passives/Sentinel.png"]= { ["x"]= 851, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Saboteur/DemolitionSpecialist.png"]= { + ["Art/2DArt/SkillIcons/passives/Shaper.png"]= { ["x"]= 888, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Saboteur/ExplosivesExpert.png"]= { + ["Art/2DArt/SkillIcons/passives/ShieldAttackDamage.png"]= { ["x"]= 925, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Saboteur/LikeClockworkNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/ShieldNotable.png"]= { + ["x"]= 962, + ["y"]= 893, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ShrugOff.png"]= { ["x"]= 0, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Saboteur/PerfectCrime.png"]= { + ["Art/2DArt/SkillIcons/passives/SkitteringRunes.png"]= { ["x"]= 37, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Saboteur/ShadowsDarknessBlind.png"]= { + ["Art/2DArt/SkillIcons/passives/Slayer/BaneOfLegends.png"]= { ["x"]= 74, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Saboteur/ShrapnelSpecialist.png"]= { + ["Art/2DArt/SkillIcons/passives/Slayer/BrutalFervor.png"]= { ["x"]= 111, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/SaboteurAnointNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Slayer/Charges.png"]= { ["x"]= 148, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Sanctuary.png"]= { + ["Art/2DArt/SkillIcons/passives/Slayer/CriticalAttacks.png"]= { ["x"]= 185, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/SareshBloodlineNotable1.png"]= { + ["Art/2DArt/SkillIcons/passives/Slayer/EndlessHunger.png"]= { ["x"]= 222, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/SareshBloodlineNotable3.png"]= { + ["Art/2DArt/SkillIcons/passives/Slayer/Headman.png"]= { ["x"]= 259, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/SareshBloodlineNoteble2.png"]= { + ["Art/2DArt/SkillIcons/passives/Slayer/Impact.png"]= { ["x"]= 296, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/SavantPath.png"]= { + ["Art/2DArt/SkillIcons/passives/SlayerAnointNotable.png"]= { ["x"]= 333, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/SearingHeat.png"]= { + ["Art/2DArt/SkillIcons/passives/SoulPact.png"]= { ["x"]= 370, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Sentinel.png"]= { + ["Art/2DArt/SkillIcons/passives/SoulSiphoning.png"]= { ["x"]= 407, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Shaper.png"]= { + ["Art/2DArt/SkillIcons/passives/SpellSuppressionLifeFlasksN.png"]= { ["x"]= 444, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ShieldAttackDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/SpellSupressionAndEnergyShieldNotable.png"]= { ["x"]= 481, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ShieldNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/SpellSupressionNotable1.png"]= { ["x"]= 518, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ShrugOff.png"]= { + ["Art/2DArt/SkillIcons/passives/SpellSupressionNotable2.png"]= { ["x"]= 555, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/SkitteringRunes.png"]= { + ["Art/2DArt/SkillIcons/passives/SpikedBulwark.png"]= { ["x"]= 592, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Slayer/BaneOfLegends.png"]= { + ["Art/2DArt/SkillIcons/passives/SpiritualAid.png"]= { ["x"]= 629, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Slayer/BrutalFervor.png"]= { + ["Art/2DArt/SkillIcons/passives/SpiritualCommand.png"]= { ["x"]= 666, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Slayer/Charges.png"]= { + ["Art/2DArt/SkillIcons/passives/StaffCrit.png"]= { ["x"]= 703, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Slayer/CriticalAttacks.png"]= { + ["Art/2DArt/SkillIcons/passives/StaffNotable.png"]= { ["x"]= 740, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Slayer/EndlessHunger.png"]= { + ["Art/2DArt/SkillIcons/passives/StaffNotable2.png"]= { ["x"]= 777, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Slayer/Headman.png"]= { + ["Art/2DArt/SkillIcons/passives/StaffNotable3.png"]= { ["x"]= 814, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Slayer/Impact.png"]= { + ["Art/2DArt/SkillIcons/passives/StanceNotableReservation.png"]= { ["x"]= 851, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/SlayerAnointNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/StanceNotableSwitching.png"]= { ["x"]= 888, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/SoulPact.png"]= { + ["Art/2DArt/SkillIcons/passives/Storm Weaver.png"]= { ["x"]= 925, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/SoulSiphoning.png"]= { + ["Art/2DArt/SkillIcons/passives/StrengthOfBlood.png"]= { + ["x"]= 962, + ["y"]= 930, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/StrikeSkillsNotable.png"]= { ["x"]= 0, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/SpellSuppressionLifeFlasksN.png"]= { + ["Art/2DArt/SkillIcons/passives/StunAvoidNotable.png"]= { ["x"]= 37, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/SpellSupressionAndEnergyShieldNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/StunMastery.png"]= { ["x"]= 74, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/SpellSupressionNotable1.png"]= { + ["Art/2DArt/SkillIcons/passives/SupremeProdigy.png"]= { ["x"]= 111, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/SpellSupressionNotable2.png"]= { + ["Art/2DArt/SkillIcons/passives/Survivalist.png"]= { ["x"]= 148, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/SpikedBulwark.png"]= { + ["Art/2DArt/SkillIcons/passives/SwordNotable1.png"]= { ["x"]= 185, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/SpiritualAid.png"]= { + ["Art/2DArt/SkillIcons/passives/TasteforBlood.png"]= { ["x"]= 222, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/SpiritualCommand.png"]= { + ["Art/2DArt/SkillIcons/passives/TempestBlast.png"]= { ["x"]= 259, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/StaffCrit.png"]= { + ["Art/2DArt/SkillIcons/passives/ThrillKiller.png"]= { ["x"]= 296, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/StaffNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/TinctureFlaskNotable1.png"]= { ["x"]= 333, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/StaffNotable2.png"]= { + ["Art/2DArt/SkillIcons/passives/TinctureManaNotable1.png"]= { ["x"]= 370, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/StaffNotable3.png"]= { + ["Art/2DArt/SkillIcons/passives/TinctureNotable1.png"]= { ["x"]= 407, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/StanceNotableReservation.png"]= { + ["Art/2DArt/SkillIcons/passives/TinctureNotable2.png"]= { ["x"]= 444, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/StanceNotableSwitching.png"]= { + ["Art/2DArt/SkillIcons/passives/TinctureNotable3.png"]= { ["x"]= 481, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Storm Weaver.png"]= { + ["Art/2DArt/SkillIcons/passives/TotemDmgNotable.png"]= { ["x"]= 518, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/StrengthOfBlood.png"]= { + ["Art/2DArt/SkillIcons/passives/Trap.png"]= { ["x"]= 555, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/StrikeSkillsNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Trap2.png"]= { ["x"]= 592, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/StunAvoidNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/TrapAndMineDmgNotable.png"]= { ["x"]= 629, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/StunMastery.png"]= { + ["Art/2DArt/SkillIcons/passives/Trickster/DamageOverTime.png"]= { ["x"]= 666, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/SupremeProdigy.png"]= { + ["Art/2DArt/SkillIcons/passives/Trickster/HeedfulRecovery.png"]= { ["x"]= 703, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Survivalist.png"]= { + ["Art/2DArt/SkillIcons/passives/Trickster/ImmuneToDoT.png"]= { ["x"]= 740, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/SwordNotable1.png"]= { + ["Art/2DArt/SkillIcons/passives/Trickster/OneStepAheadTrickster.png"]= { ["x"]= 777, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/TasteforBlood.png"]= { + ["Art/2DArt/SkillIcons/passives/Trickster/PolymathTrickster.png"]= { ["x"]= 814, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/TempestBlast.png"]= { + ["Art/2DArt/SkillIcons/passives/Trickster/SoulThiefTrickster.png"]= { ["x"]= 851, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ThrillKiller.png"]= { + ["Art/2DArt/SkillIcons/passives/Trickster/SupressionEnergyShieldTrickster.png"]= { ["x"]= 888, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/TinctureFlaskNotable1.png"]= { + ["Art/2DArt/SkillIcons/passives/Trickster/UncontrolledVigour.png"]= { ["x"]= 925, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/TinctureManaNotable1.png"]= { + ["Art/2DArt/SkillIcons/passives/TricksterAnointNotable.png"]= { + ["x"]= 962, + ["y"]= 967, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/TrueStriker.png"]= { ["x"]= 0, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/TinctureNotable1.png"]= { + ["Art/2DArt/SkillIcons/passives/TwoHandedMeleeDamage.png"]= { ["x"]= 37, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/TinctureNotable2.png"]= { + ["Art/2DArt/SkillIcons/passives/TwoHandedweaponImpalesNotable.png"]= { ["x"]= 74, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/TinctureNotable3.png"]= { + ["Art/2DArt/SkillIcons/passives/Unfaltering.png"]= { ["x"]= 111, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/TotemDmgNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Unrelenting.png"]= { ["x"]= 148, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Trap.png"]= { + ["Art/2DArt/SkillIcons/passives/Unwavering.png"]= { ["x"]= 185, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Trap2.png"]= { + ["Art/2DArt/SkillIcons/passives/UpwardsFiringProjectilesNotable.png"]= { ["x"]= 222, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/TrapAndMineDmgNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Vampirism.png"]= { ["x"]= 259, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Trickster/DamageOverTime.png"]= { + ["Art/2DArt/SkillIcons/passives/VoidBarrier.png"]= { ["x"]= 296, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Trickster/HeedfulRecovery.png"]= { + ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanBloodMagic1.png"]= { ["x"]= 333, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Trickster/ImmuneToDoT.png"]= { + ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanBloodMagic2.png"]= { ["x"]= 370, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Trickster/OneStepAheadTrickster.png"]= { + ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanBloodMagic3.png"]= { ["x"]= 407, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Trickster/PolymathTrickster.png"]= { + ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanCorpses.png"]= { ["x"]= 444, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Trickster/SoulThiefTrickster.png"]= { + ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanCurses2.png"]= { ["x"]= 481, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Trickster/SupressionEnergyShieldTrickster.png"]= { + ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanCursesChoice.png"]= { ["x"]= 518, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Trickster/UncontrolledVigour.png"]= { + ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanVoodooDoll.png"]= { ["x"]= 555, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/TricksterAnointNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/WandDamage.png"]= { ["x"]= 592, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/TrueStriker.png"]= { + ["Art/2DArt/SkillIcons/passives/WarcryBuffEffectNotable.png"]= { ["x"]= 629, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/TwoHandedMeleeDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/WarcryGainDamageNotable.png"]= { ["x"]= 666, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/TwoHandedweaponImpalesNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Warden/TinctureRangedNotable.png"]= { ["x"]= 703, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Unfaltering.png"]= { + ["Art/2DArt/SkillIcons/passives/Warden/WardenAllAilments.png"]= { ["x"]= 740, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Unrelenting.png"]= { + ["Art/2DArt/SkillIcons/passives/Warden/WardenBarkskin1.png"]= { ["x"]= 777, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Unwavering.png"]= { + ["Art/2DArt/SkillIcons/passives/Warden/WardenBarkskin2.png"]= { ["x"]= 814, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/UpwardsFiringProjectilesNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Warden/WardenColdAilments.png"]= { ["x"]= 851, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Vampirism.png"]= { + ["Art/2DArt/SkillIcons/passives/Warden/WardenFireAilments.png"]= { ["x"]= 888, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/VoidBarrier.png"]= { + ["Art/2DArt/SkillIcons/passives/Warden/WardenLightningAilments.png"]= { ["x"]= 925, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanBloodMagic1.png"]= { + ["Art/2DArt/SkillIcons/passives/Warden/WardenPrimitivism.png"]= { + ["x"]= 962, + ["y"]= 1004, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Warden/WardenSaps1.png"]= { ["x"]= 0, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanBloodMagic2.png"]= { + ["Art/2DArt/SkillIcons/passives/Warden/WardenSaps2.png"]= { ["x"]= 37, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanBloodMagic3.png"]= { + ["Art/2DArt/SkillIcons/passives/Warden/WardenSaps3.png"]= { ["x"]= 74, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanCorpses.png"]= { + ["Art/2DArt/SkillIcons/passives/Warden/WardenTracking.png"]= { ["x"]= 111, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanCurses2.png"]= { + ["Art/2DArt/SkillIcons/passives/WardenAnointNotable.png"]= { ["x"]= 148, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanCursesChoice.png"]= { + ["Art/2DArt/SkillIcons/passives/Warrior.png"]= { ["x"]= 185, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanVoodooDoll.png"]= { + ["Art/2DArt/SkillIcons/passives/WeaponElementalNotable.png"]= { ["x"]= 222, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/WandDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/WritteninBlood.png"]= { ["x"]= 259, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/WarcryBuffEffectNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/accuracydex.png"]= { ["x"]= 296, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/WarcryGainDamageNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/adderstouch.png"]= { ["x"]= 333, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Warden/TinctureRangedNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/ambidexterity.png"]= { ["x"]= 370, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Warden/WardenAllAilments.png"]= { + ["Art/2DArt/SkillIcons/passives/amplify.png"]= { ["x"]= 407, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Warden/WardenBarkskin1.png"]= { + ["Art/2DArt/SkillIcons/passives/animalspirit.png"]= { ["x"]= 444, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Warden/WardenBarkskin2.png"]= { + ["Art/2DArt/SkillIcons/passives/arcaneefficiency.png"]= { ["x"]= 481, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Warden/WardenColdAilments.png"]= { + ["Art/2DArt/SkillIcons/passives/arcane focus.png"]= { ["x"]= 518, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Warden/WardenFireAilments.png"]= { + ["Art/2DArt/SkillIcons/passives/arcanepotency.png"]= { ["x"]= 555, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Warden/WardenLightningAilments.png"]= { + ["Art/2DArt/SkillIcons/passives/arcaneradience.png"]= { ["x"]= 592, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Warden/WardenPrimitivism.png"]= { + ["Art/2DArt/SkillIcons/passives/armourmastery.png"]= { ["x"]= 629, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Warden/WardenSaps1.png"]= { + ["Art/2DArt/SkillIcons/passives/arsonist.png"]= { ["x"]= 666, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Warden/WardenSaps2.png"]= { + ["Art/2DArt/SkillIcons/passives/ashfrostandstorm.png"]= { ["x"]= 703, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Warden/WardenSaps3.png"]= { + ["Art/2DArt/SkillIcons/passives/attackspeedbow.png"]= { ["x"]= 740, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Warden/WardenTracking.png"]= { + ["Art/2DArt/SkillIcons/passives/authority.png"]= { ["x"]= 777, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/WardenAnointNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/barricade.png"]= { ["x"]= 814, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Warrior.png"]= { + ["Art/2DArt/SkillIcons/passives/berserking.png"]= { ["x"]= 851, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/WeaponElementalNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/bladebarrier.png"]= { ["x"]= 888, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/WritteninBlood.png"]= { + ["Art/2DArt/SkillIcons/passives/blademaster.png"]= { ["x"]= 925, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/accuracydex.png"]= { + ["Art/2DArt/SkillIcons/passives/blademistress.png"]= { + ["x"]= 962, + ["y"]= 1041, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/blastradius.png"]= { ["x"]= 0, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/adderstouch.png"]= { + ["Art/2DArt/SkillIcons/passives/bodysoul.png"]= { ["x"]= 37, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ambidexterity.png"]= { + ["Art/2DArt/SkillIcons/passives/borntofight.png"]= { ["x"]= 74, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/amplify.png"]= { + ["Art/2DArt/SkillIcons/passives/breathofrime.png"]= { ["x"]= 111, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/animalspirit.png"]= { + ["Art/2DArt/SkillIcons/passives/butchery.png"]= { ["x"]= 148, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/arcaneefficiency.png"]= { + ["Art/2DArt/SkillIcons/passives/castavoidinterruption.png"]= { ["x"]= 185, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/arcane focus.png"]= { + ["Art/2DArt/SkillIcons/passives/catalyse.png"]= { ["x"]= 222, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/arcanepotency.png"]= { + ["Art/2DArt/SkillIcons/passives/chargedex.png"]= { ["x"]= 259, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/arcaneradience.png"]= { + ["Art/2DArt/SkillIcons/passives/chargeint.png"]= { ["x"]= 296, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/armourmastery.png"]= { + ["Art/2DArt/SkillIcons/passives/chargestr.png"]= { ["x"]= 333, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/arsonist.png"]= { + ["Art/2DArt/SkillIcons/passives/cleverconstruction.png"]= { ["x"]= 370, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ashfrostandstorm.png"]= { + ["Art/2DArt/SkillIcons/passives/clustersLink2.png"]= { ["x"]= 407, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/attackspeedbow.png"]= { + ["Art/2DArt/SkillIcons/passives/clustersLink3.png"]= { ["x"]= 444, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/authority.png"]= { + ["Art/2DArt/SkillIcons/passives/criticalstrikemultiplier2.png"]= { ["x"]= 481, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/barricade.png"]= { + ["Art/2DArt/SkillIcons/passives/cruelblade.png"]= { ["x"]= 518, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/berserking.png"]= { + ["Art/2DArt/SkillIcons/passives/daggerpenetration.png"]= { ["x"]= 555, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/bladebarrier.png"]= { + ["Art/2DArt/SkillIcons/passives/deadlydraw.png"]= { ["x"]= 592, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/blademaster.png"]= { + ["Art/2DArt/SkillIcons/passives/deadlyprecision.png"]= { ["x"]= 629, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/blademistress.png"]= { + ["Art/2DArt/SkillIcons/passives/deathattunement.png"]= { ["x"]= 666, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/blastradius.png"]= { + ["Art/2DArt/SkillIcons/passives/deepthoughts.png"]= { ["x"]= 703, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/bodysoul.png"]= { + ["Art/2DArt/SkillIcons/passives/deepwisdom.png"]= { ["x"]= 740, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/borntofight.png"]= { + ["Art/2DArt/SkillIcons/passives/diamondskin.png"]= { ["x"]= 777, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/breathofrime.png"]= { + ["Art/2DArt/SkillIcons/passives/doomcast.png"]= { ["x"]= 814, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/butchery.png"]= { + ["Art/2DArt/SkillIcons/passives/eagleeye.png"]= { ["x"]= 851, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/castavoidinterruption.png"]= { + ["Art/2DArt/SkillIcons/passives/eagletalons.png"]= { ["x"]= 888, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/catalyse.png"]= { + ["Art/2DArt/SkillIcons/passives/elderpower.png"]= { ["x"]= 925, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/chargedex.png"]= { + ["Art/2DArt/SkillIcons/passives/elementalist.png"]= { + ["x"]= 962, + ["y"]= 1078, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/evasion.png"]= { ["x"]= 0, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/chargeint.png"]= { + ["Art/2DArt/SkillIcons/passives/executioner.png"]= { ["x"]= 37, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/chargestr.png"]= { + ["Art/2DArt/SkillIcons/passives/expeditiousmunitions.png"]= { ["x"]= 74, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/cleverconstruction.png"]= { + ["Art/2DArt/SkillIcons/passives/fellingtheweak.png"]= { ["x"]= 111, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/clustersLink2.png"]= { + ["Art/2DArt/SkillIcons/passives/fending.png"]= { ["x"]= 148, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/clustersLink3.png"]= { + ["Art/2DArt/SkillIcons/passives/finesse.png"]= { ["x"]= 185, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/criticalstrikemultiplier2.png"]= { + ["Art/2DArt/SkillIcons/passives/firedamage.png"]= { ["x"]= 222, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/cruelblade.png"]= { + ["Art/2DArt/SkillIcons/passives/flameborn.png"]= { ["x"]= 259, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/daggerpenetration.png"]= { + ["Art/2DArt/SkillIcons/passives/flaying.png"]= { ["x"]= 296, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/deadlydraw.png"]= { + ["Art/2DArt/SkillIcons/passives/foresight.png"]= { ["x"]= 333, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/deadlyprecision.png"]= { + ["Art/2DArt/SkillIcons/passives/frostborn.png"]= { ["x"]= 370, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/deathattunement.png"]= { + ["Art/2DArt/SkillIcons/passives/furybolts.png"]= { ["x"]= 407, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/deepthoughts.png"]= { + ["Art/2DArt/SkillIcons/passives/fussilade.png"]= { ["x"]= 444, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/deepwisdom.png"]= { + ["Art/2DArt/SkillIcons/passives/galvanichammer.png"]= { ["x"]= 481, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/diamondskin.png"]= { + ["Art/2DArt/SkillIcons/passives/golemsblood.png"]= { ["x"]= 518, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/doomcast.png"]= { + ["Art/2DArt/SkillIcons/passives/grace.png"]= { ["x"]= 555, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/eagleeye.png"]= { + ["Art/2DArt/SkillIcons/passives/graveexpectations.png"]= { ["x"]= 592, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/eagletalons.png"]= { + ["Art/2DArt/SkillIcons/passives/graveintentions.png"]= { ["x"]= 629, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/elderpower.png"]= { + ["Art/2DArt/SkillIcons/passives/gravepact.png"]= { ["x"]= 666, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/elementalist.png"]= { + ["Art/2DArt/SkillIcons/passives/hammerblows.png"]= { ["x"]= 703, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/evasion.png"]= { + ["Art/2DArt/SkillIcons/passives/hatchetmaster.png"]= { ["x"]= 740, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/executioner.png"]= { + ["Art/2DArt/SkillIcons/passives/heartofthegladiator.png"]= { ["x"]= 777, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/expeditiousmunitions.png"]= { + ["Art/2DArt/SkillIcons/passives/heartpierce.png"]= { ["x"]= 814, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/fellingtheweak.png"]= { + ["Art/2DArt/SkillIcons/passives/heartseeker.png"]= { ["x"]= 851, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/fending.png"]= { + ["Art/2DArt/SkillIcons/passives/heavydraw.png"]= { ["x"]= 888, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/finesse.png"]= { + ["Art/2DArt/SkillIcons/passives/hellfire.png"]= { ["x"]= 925, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/firedamage.png"]= { + ["Art/2DArt/SkillIcons/passives/highexplosives.png"]= { + ["x"]= 962, + ["y"]= 1115, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/icebite.png"]= { ["x"]= 0, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/flameborn.png"]= { + ["Art/2DArt/SkillIcons/passives/iceheart.png"]= { ["x"]= 37, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/flaying.png"]= { + ["Art/2DArt/SkillIcons/passives/increased armor.png"]= { ["x"]= 74, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/foresight.png"]= { + ["Art/2DArt/SkillIcons/passives/influence.png"]= { ["x"]= 111, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/frostborn.png"]= { + ["Art/2DArt/SkillIcons/passives/innerforce.png"]= { ["x"]= 148, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/furybolts.png"]= { + ["Art/2DArt/SkillIcons/passives/ironwoodtotem.png"]= { ["x"]= 185, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/fussilade.png"]= { + ["Art/2DArt/SkillIcons/passives/kingofthehill.png"]= { ["x"]= 222, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/galvanichammer.png"]= { + ["Art/2DArt/SkillIcons/passives/lavalash.png"]= { ["x"]= 259, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/golemsblood.png"]= { + ["Art/2DArt/SkillIcons/passives/leadership.png"]= { ["x"]= 296, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/grace.png"]= { + ["Art/2DArt/SkillIcons/passives/legendaryswordsman.png"]= { ["x"]= 333, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/graveexpectations.png"]= { + ["Art/2DArt/SkillIcons/passives/life1.png"]= { ["x"]= 370, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/graveintentions.png"]= { + ["Art/2DArt/SkillIcons/passives/lifeleech.png"]= { ["x"]= 407, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/gravepact.png"]= { + ["Art/2DArt/SkillIcons/passives/lifeleechimmunity.png"]= { ["x"]= 444, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/hammerblows.png"]= { + ["Art/2DArt/SkillIcons/passives/lightningint.png"]= { ["x"]= 481, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/hatchetmaster.png"]= { + ["Art/2DArt/SkillIcons/passives/lordofthedead.png"]= { ["x"]= 518, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/heartofthegladiator.png"]= { + ["Art/2DArt/SkillIcons/passives/macedmg.png"]= { ["x"]= 555, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/heartpierce.png"]= { + ["Art/2DArt/SkillIcons/passives/manaconduit.png"]= { ["x"]= 592, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/heartseeker.png"]= { + ["Art/2DArt/SkillIcons/passives/masterfletcher.png"]= { ["x"]= 629, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/heavydraw.png"]= { + ["Art/2DArt/SkillIcons/passives/mastersapper.png"]= { ["x"]= 666, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/hellfire.png"]= { + ["Art/2DArt/SkillIcons/passives/masterywand.png"]= { ["x"]= 703, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/highexplosives.png"]= { + ["Art/2DArt/SkillIcons/passives/melding.png"]= { ["x"]= 740, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/icebite.png"]= { + ["Art/2DArt/SkillIcons/passives/mentalacuity.png"]= { ["x"]= 777, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/iceheart.png"]= { + ["Art/2DArt/SkillIcons/passives/minddrinker.png"]= { ["x"]= 814, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/increased armor.png"]= { + ["Art/2DArt/SkillIcons/passives/minionblockchance.png"]= { ["x"]= 851, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/influence.png"]= { + ["Art/2DArt/SkillIcons/passives/newcolddamage.png"]= { ["x"]= 888, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/innerforce.png"]= { + ["Art/2DArt/SkillIcons/passives/newenergyshield.png"]= { ["x"]= 925, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ironwoodtotem.png"]= { + ["Art/2DArt/SkillIcons/passives/newevadepercentage.png"]= { + ["x"]= 962, + ["y"]= 1152, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/newincreasedcritical.png"]= { ["x"]= 0, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/kingofthehill.png"]= { + ["Art/2DArt/SkillIcons/passives/newnewattackspeed.png"]= { ["x"]= 37, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/lavalash.png"]= { + ["Art/2DArt/SkillIcons/passives/newtitanicmight.png"]= { ["x"]= 74, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/leadership.png"]= { + ["Art/2DArt/SkillIcons/passives/nightstalker.png"]= { ["x"]= 111, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/legendaryswordsman.png"]= { + ["Art/2DArt/SkillIcons/passives/nimbleness.png"]= { ["x"]= 148, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/life1.png"]= { + ["Art/2DArt/SkillIcons/passives/oxblood.png"]= { ["x"]= 185, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/lifeleech.png"]= { + ["Art/2DArt/SkillIcons/passives/perfectaim.png"]= { ["x"]= 222, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/lifeleechimmunity.png"]= { + ["Art/2DArt/SkillIcons/passives/plusdexterity.png"]= { ["x"]= 259, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/lightningint.png"]= { + ["Art/2DArt/SkillIcons/passives/plusintelligence.png"]= { ["x"]= 296, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/lordofthedead.png"]= { + ["Art/2DArt/SkillIcons/passives/plusstrength.png"]= { ["x"]= 333, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/macedmg.png"]= { + ["Art/2DArt/SkillIcons/passives/potencyofwill.png"]= { ["x"]= 370, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/manaconduit.png"]= { + ["Art/2DArt/SkillIcons/passives/precision.png"]= { ["x"]= 407, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/masterfletcher.png"]= { + ["Art/2DArt/SkillIcons/passives/pyromaniac.png"]= { ["x"]= 444, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/mastersapper.png"]= { + ["Art/2DArt/SkillIcons/passives/quickstep.png"]= { ["x"]= 481, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/masterywand.png"]= { + ["Art/2DArt/SkillIcons/passives/razorsedge.png"]= { ["x"]= 518, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/melding.png"]= { + ["Art/2DArt/SkillIcons/passives/reaver.png"]= { ["x"]= 555, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/mentalacuity.png"]= { + ["Art/2DArt/SkillIcons/passives/revengeofthehunted.png"]= { ["x"]= 592, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/minddrinker.png"]= { + ["Art/2DArt/SkillIcons/passives/saboteur.png"]= { ["x"]= 629, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/minionblockchance.png"]= { + ["Art/2DArt/SkillIcons/passives/savant.png"]= { ["x"]= 666, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/newcolddamage.png"]= { + ["Art/2DArt/SkillIcons/passives/scissorblades.png"]= { ["x"]= 703, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/newenergyshield.png"]= { + ["Art/2DArt/SkillIcons/passives/serpentstance.png"]= { ["x"]= 740, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/newevadepercentage.png"]= { + ["Art/2DArt/SkillIcons/passives/shamsnisticfury.png"]= { ["x"]= 777, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/newincreasedcritical.png"]= { + ["Art/2DArt/SkillIcons/passives/shieldwall.png"]= { ["x"]= 814, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/newnewattackspeed.png"]= { + ["Art/2DArt/SkillIcons/passives/skullcracking.png"]= { ["x"]= 851, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/newtitanicmight.png"]= { + ["Art/2DArt/SkillIcons/passives/soulsyphon.png"]= { ["x"]= 888, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/nightstalker.png"]= { + ["Art/2DArt/SkillIcons/passives/sovereignty.png"]= { ["x"]= 925, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/nimbleness.png"]= { + ["Art/2DArt/SkillIcons/passives/sparkingattacks.png"]= { + ["x"]= 962, + ["y"]= 1189, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/stabbingcomeback.png"]= { ["x"]= 0, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/oxblood.png"]= { + ["Art/2DArt/SkillIcons/passives/staticshield.png"]= { ["x"]= 37, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/perfectaim.png"]= { + ["Art/2DArt/SkillIcons/passives/stormborn.png"]= { ["x"]= 74, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/plusdexterity.png"]= { + ["Art/2DArt/SkillIcons/passives/strongarm.png"]= { ["x"]= 111, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/plusintelligence.png"]= { + ["Art/2DArt/SkillIcons/passives/stunmace.png"]= { ["x"]= 148, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/plusstrength.png"]= { + ["Art/2DArt/SkillIcons/passives/stunstaff.png"]= { ["x"]= 185, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/potencyofwill.png"]= { + ["Art/2DArt/SkillIcons/passives/swagger.png"]= { ["x"]= 222, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/precision.png"]= { + ["Art/2DArt/SkillIcons/passives/swashbuckler.png"]= { ["x"]= 259, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/pyromaniac.png"]= { + ["Art/2DArt/SkillIcons/passives/talonsofmurder.png"]= { ["x"]= 296, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/quickstep.png"]= { + ["Art/2DArt/SkillIcons/passives/thickskin.png"]= { ["x"]= 333, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/razorsedge.png"]= { + ["Art/2DArt/SkillIcons/passives/throatseeker.png"]= { ["x"]= 370, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/reaver.png"]= { + ["Art/2DArt/SkillIcons/passives/titanicmight.png"]= { ["x"]= 407, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/revengeofthehunted.png"]= { + ["Art/2DArt/SkillIcons/passives/totemandbrandrange.png"]= { ["x"]= 444, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/saboteur.png"]= { + ["Art/2DArt/SkillIcons/passives/totemicmastery.png"]= { ["x"]= 481, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/savant.png"]= { + ["Art/2DArt/SkillIcons/passives/totemiczeal.png"]= { ["x"]= 518, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/scissorblades.png"]= { + ["Art/2DArt/SkillIcons/passives/trapsradius.png"]= { ["x"]= 555, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/serpentstance.png"]= { + ["Art/2DArt/SkillIcons/passives/trollblood.png"]= { ["x"]= 592, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/shamsnisticfury.png"]= { + ["Art/2DArt/SkillIcons/passives/volitilemines.png"]= { ["x"]= 629, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/shieldwall.png"]= { + ["Art/2DArt/SkillIcons/passives/wandslingersprowess.png"]= { ["x"]= 666, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/skullcracking.png"]= { + ["Art/2DArt/SkillIcons/passives/whirlingstaff.png"]= { ["x"]= 703, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/soulsyphon.png"]= { + ["Art/2DArt/SkillIcons/passives/wreckingball.png"]= { ["x"]= 740, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/sovereignty.png"]= { + ["Art/2DArt/SkillIcons/passives/Ascendants/Assassin.png"]= { ["x"]= 777, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/sparkingattacks.png"]= { + ["Art/2DArt/SkillIcons/passives/Ascendants/Berserker.png"]= { ["x"]= 814, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/stabbingcomeback.png"]= { + ["Art/2DArt/SkillIcons/passives/Ascendants/Champion.png"]= { ["x"]= 851, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/staticshield.png"]= { + ["Art/2DArt/SkillIcons/passives/Ascendants/Chieftain.png"]= { ["x"]= 888, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/stormborn.png"]= { + ["Art/2DArt/SkillIcons/passives/Ascendants/Deadeye.png"]= { ["x"]= 925, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/strongarm.png"]= { + ["Art/2DArt/SkillIcons/passives/Ascendants/Elementalist.png"]= { + ["x"]= 962, + ["y"]= 1226, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/Gladiator.png"]= { ["x"]= 0, ["y"]= 1263, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/stunmace.png"]= { + ["Art/2DArt/SkillIcons/passives/Ascendants/Guardian.png"]= { ["x"]= 37, ["y"]= 1263, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/stunstaff.png"]= { + ["Art/2DArt/SkillIcons/passives/Ascendants/Hierophant.png"]= { ["x"]= 74, ["y"]= 1263, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/swagger.png"]= { + ["Art/2DArt/SkillIcons/passives/Ascendants/Inquisitor.png"]= { ["x"]= 111, ["y"]= 1263, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/swashbuckler.png"]= { + ["Art/2DArt/SkillIcons/passives/Ascendants/Juggernaut.png"]= { ["x"]= 148, ["y"]= 1263, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/talonsofmurder.png"]= { + ["Art/2DArt/SkillIcons/passives/Ascendants/Necromancer.png"]= { ["x"]= 185, ["y"]= 1263, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/thickskin.png"]= { + ["Art/2DArt/SkillIcons/passives/Ascendants/Occultist.png"]= { ["x"]= 222, ["y"]= 1263, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/throatseeker.png"]= { + ["Art/2DArt/SkillIcons/passives/Ascendants/Pathfinder.png"]= { ["x"]= 259, ["y"]= 1263, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/titanicmight.png"]= { + ["Art/2DArt/SkillIcons/passives/Ascendants/Raider.png"]= { ["x"]= 296, ["y"]= 1263, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/totemandbrandrange.png"]= { + ["Art/2DArt/SkillIcons/passives/Ascendants/Saboteur.png"]= { ["x"]= 333, ["y"]= 1263, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/totemicmastery.png"]= { + ["Art/2DArt/SkillIcons/passives/Ascendants/Slayer.png"]= { ["x"]= 370, ["y"]= 1263, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/totemiczeal.png"]= { + ["Art/2DArt/SkillIcons/passives/Ascendants/Trickster.png"]= { ["x"]= 407, ["y"]= 1263, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/trapsradius.png"]= { + ["Art/2DArt/SkillIcons/passives/Assassin/Ambush.png"]= { ["x"]= 444, ["y"]= 1263, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/trollblood.png"]= { + ["Art/2DArt/SkillIcons/passives/Chieftain/TawhoaForestsStrength.png"]= { ["x"]= 481, ["y"]= 1263, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/volitilemines.png"]= { - ["x"]= 518, - ["y"]= 1263, - ["w"]= 37, - ["h"]= 37 - }, - ["Art/2DArt/SkillIcons/passives/wandslingersprowess.png"]= { - ["x"]= 555, - ["y"]= 1263, - ["w"]= 37, - ["h"]= 37 - }, - ["Art/2DArt/SkillIcons/passives/whirlingstaff.png"]= { - ["x"]= 592, - ["y"]= 1263, - ["w"]= 37, - ["h"]= 37 - }, - ["Art/2DArt/SkillIcons/passives/wreckingball.png"]= { - ["x"]= 629, - ["y"]= 1263, - ["w"]= 37, - ["h"]= 37 - }, ["Art/2DArt/SkillIcons/passives/HinekoraPassiveIcon1.png"]= { - ["x"]= 666, + ["x"]= 518, ["y"]= 1263, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/HinekoraPassiveIcon2.png"]= { - ["x"]= 703, + ["x"]= 555, ["y"]= 1263, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/HinekoraPassiveIcon3.png"]= { - ["x"]= 740, + ["x"]= 592, ["y"]= 1263, ["w"]= 37, ["h"]= 37 @@ -6846,8 +6972,8 @@ return { } }, ["keystoneActive"]= { - ["filename"]= "https://web.poecdn.com/image/passive-skill/skills-3.jpg?24c5e3b9", - ["w"]= 962, + ["filename"]= "https://web.poecdn.com/image/passive-skill/skills-3.jpg?b1b66a3b", + ["w"]= 999, ["h"]= 1459, ["coords"]= { ["Art/2DArt/SkillIcons/passives/AnointOnlyKeystone.png"]= { @@ -6959,217 +7085,217 @@ return { ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/KeystoneEldritchBattery.png"]= { - ["x"]= 0, - ["y"]= 1353, + ["x"]= 936, + ["y"]= 1300, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/KeystoneElementalEquilibrium.png"]= { - ["x"]= 52, + ["x"]= 0, ["y"]= 1353, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/KeystoneElementalOverload.png"]= { - ["x"]= 104, + ["x"]= 52, ["y"]= 1353, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/KeystoneHexMaster.png"]= { - ["x"]= 156, + ["x"]= 104, ["y"]= 1353, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/KeystoneIronGrip.png"]= { - ["x"]= 208, + ["x"]= 156, ["y"]= 1353, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/KeystoneIronReflexes.png"]= { - ["x"]= 260, + ["x"]= 208, ["y"]= 1353, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/KeystoneIronWill.png"]= { - ["x"]= 312, + ["x"]= 260, ["y"]= 1353, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/KeystoneMinionInstability.png"]= { - ["x"]= 364, + ["x"]= 312, ["y"]= 1353, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/KeystoneNecromanticAegis.png"]= { - ["x"]= 416, + ["x"]= 364, ["y"]= 1353, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/KeystonePainAttunement.png"]= { - ["x"]= 468, + ["x"]= 416, ["y"]= 1353, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/KeystonePointBlankArcher.png"]= { - ["x"]= 520, + ["x"]= 468, ["y"]= 1353, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/KeystoneResoluteTechnique.png"]= { - ["x"]= 572, + ["x"]= 520, ["y"]= 1353, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/KeystoneUnwaveringStance.png"]= { - ["x"]= 624, + ["x"]= 572, ["y"]= 1353, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/Kineticism.png"]= { - ["x"]= 676, + ["x"]= 624, ["y"]= 1353, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/LoneMessenger.png"]= { - ["x"]= 728, + ["x"]= 676, ["y"]= 1353, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/MiracleMaker.png"]= { - ["x"]= 780, + ["x"]= 728, ["y"]= 1353, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/MomentofRespite.png"]= { - ["x"]= 832, + ["x"]= 780, ["y"]= 1353, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/NaturesPatience.png"]= { - ["x"]= 884, + ["x"]= 832, ["y"]= 1353, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/Occultist/EldrichBarrier.png"]= { - ["x"]= 0, - ["y"]= 1406, + ["x"]= 884, + ["y"]= 1353, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/Pitfighter.png"]= { - ["x"]= 52, - ["y"]= 1406, + ["x"]= 936, + ["y"]= 1353, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/PreciseTechnique.png"]= { - ["x"]= 104, + ["x"]= 0, ["y"]= 1406, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/Resilience.png"]= { - ["x"]= 156, + ["x"]= 52, ["y"]= 1406, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/RetaliationKeystone.png"]= { - ["x"]= 208, + ["x"]= 104, ["y"]= 1406, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/SacredBastionKeystone.png"]= { - ["x"]= 260, + ["x"]= 156, ["y"]= 1406, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/SecretOfAgony.png"]= { - ["x"]= 312, + ["x"]= 208, ["y"]= 1406, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/SupremeEgo.png"]= { - ["x"]= 364, + ["x"]= 260, ["y"]= 1406, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/TinctureKeystone1.png"]= { - ["x"]= 416, + ["x"]= 312, ["y"]= 1406, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/Trickster/AcrobaticWillpower.png"]= { - ["x"]= 468, + ["x"]= 364, ["y"]= 1406, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/VersatileCombatant.png"]= { - ["x"]= 520, + ["x"]= 416, ["y"]= 1406, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/VeteransAwareness.png"]= { - ["x"]= 572, + ["x"]= 468, ["y"]= 1406, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/WindDancer.png"]= { - ["x"]= 624, + ["x"]= 520, ["y"]= 1406, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/ghostreaver.png"]= { - ["x"]= 676, + ["x"]= 572, ["y"]= 1406, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/heroicspirit.png"]= { - ["x"]= 728, + ["x"]= 624, ["y"]= 1406, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/liferegentoenergyshield.png"]= { - ["x"]= 780, + ["x"]= 676, ["y"]= 1406, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/totemmax.png"]= { - ["x"]= 832, + ["x"]= 728, ["y"]= 1406, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/vaalpact.png"]= { - ["x"]= 884, + ["x"]= 780, ["y"]= 1406, ["w"]= 52, ["h"]= 53 @@ -7177,8 +7303,8 @@ return { } }, ["normalInactive"]= { - ["filename"]= "https://web.poecdn.com/image/passive-skill/skills-disabled-3.jpg?ac7492dd", - ["w"]= 962, + ["filename"]= "https://web.poecdn.com/image/passive-skill/skills-disabled-3.jpg?94caf4e2", + ["w"]= 999, ["h"]= 1459, ["coords"]= { ["Art/2DArt/SkillIcons/passives/2handeddamage.png"]= { @@ -7404,2539 +7530,2539 @@ return { ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/AtlasTrees/BestiaryNode1.png"]= { - ["x"]= 0, - ["y"]= 26, + ["x"]= 962, + ["y"]= 0, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/AtlasTrees/BestiaryNotable4.png"]= { - ["x"]= 26, + ["x"]= 0, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/AtlasTrees/BestiaryNotable5.png"]= { - ["x"]= 52, + ["x"]= 26, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/AtlasTrees/BestiaryNotable6.png"]= { - ["x"]= 78, + ["x"]= 52, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/AtlasTrees/BloodLineOlrothRune1.png"]= { - ["x"]= 104, + ["x"]= 78, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/AtlasTrees/BloodLineOlrothRune2.png"]= { - ["x"]= 130, + ["x"]= 104, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/AtlasTrees/BloodLineOlrothRune3.png"]= { - ["x"]= 156, + ["x"]= 130, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/AtlasTrees/BoldUndertaking.png"]= { - ["x"]= 182, + ["x"]= 156, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/AtlasTrees/BreachBossClaspedHands.png"]= { - ["x"]= 208, + ["x"]= 182, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/AtlasTrees/DeliriumNode1.png"]= { - ["x"]= 234, + ["x"]= 208, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/AtlasTrees/ExpeditionNode1.png"]= { - ["x"]= 260, + ["x"]= 234, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/AtlasTrees/HarbingerNotable3.png"]= { - ["x"]= 286, + ["x"]= 260, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/AtlasTrees/LichNode1.png"]= { - ["x"]= 312, + ["x"]= 286, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/AtlasTrees/LyciaNode1.png"]= { - ["x"]= 338, + ["x"]= 312, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/AtlasTrees/MorePrimalWispsSmall.png"]= { - ["x"]= 364, + ["x"]= 338, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/AtlasTrees/MoreVividWispsSmall.png"]= { - ["x"]= 390, + ["x"]= 364, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/AtlasTrees/MoreWildWispsSmall.png"]= { - ["x"]= 416, + ["x"]= 390, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/AtlasTrees/PerandusNotable2.png"]= { - ["x"]= 442, + ["x"]= 416, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/AtlasTrees/RitualBloodlineNode.png"]= { - ["x"]= 468, + ["x"]= 442, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/AtlasTrees/UltimatumNode1.png"]= { - ["x"]= 494, + ["x"]= 468, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/AtlasTrees/UltimatumNotable6.png"]= { - ["x"]= 520, + ["x"]= 494, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/AtlasTrees/UltimatumNotableMonsters1.png"]= { - ["x"]= 546, + ["x"]= 520, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/AtlasTrees/UltimatumNotableMonsters2.png"]= { - ["x"]= 572, + ["x"]= 546, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/AtlasTrees/UltimatumNotableStoneCircle.png"]= { - ["x"]= 598, + ["x"]= 572, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/AttackBlindNode.png"]= { - ["x"]= 624, + ["x"]= 598, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/AttackDamangeAndEvasionNotableNode.png"]= { - ["x"]= 650, + ["x"]= 624, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/AttackPoisonNode.png"]= { - ["x"]= 676, + ["x"]= 650, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/AuraEffectNode.png"]= { - ["x"]= 702, + ["x"]= 676, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/BannerAreaNode.png"]= { - ["x"]= 728, + ["x"]= 702, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/BannerDurationNode.png"]= { - ["x"]= 754, + ["x"]= 728, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/BannerEffectNode.png"]= { - ["x"]= 780, + ["x"]= 754, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/BannerResourceAreaNode.png"]= { - ["x"]= 806, + ["x"]= 780, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/BeltimberBladeNode.png"]= { - ["x"]= 832, + ["x"]= 806, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/Berserker/DmgAttackSpeed.png"]= { - ["x"]= 858, + ["x"]= 832, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/Berserker/DmgCrit.png"]= { - ["x"]= 884, + ["x"]= 858, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/Berserker/DmgLeech.png"]= { - ["x"]= 910, + ["x"]= 884, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/Berserker/DmgWarcry.png"]= { - ["x"]= 936, + ["x"]= 910, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/BleedAndPoisonMitigateNode.png"]= { - ["x"]= 0, - ["y"]= 52, + ["x"]= 936, + ["y"]= 26, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/BlockAttackDmgNode.png"]= { - ["x"]= 26, - ["y"]= 52, + ["x"]= 962, + ["y"]= 26, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/BlockSpellDmgNode.png"]= { - ["x"]= 52, + ["x"]= 0, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/Blood2.png"]= { - ["x"]= 78, + ["x"]= 26, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/BluntInstrument.png"]= { - ["x"]= 104, + ["x"]= 52, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/BowDamage.png"]= { - ["x"]= 130, + ["x"]= 78, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/Brand1.png"]= { - ["x"]= 156, + ["x"]= 104, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/Brand2.png"]= { - ["x"]= 182, + ["x"]= 130, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/BrandDmgNode.png"]= { - ["x"]= 208, + ["x"]= 156, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/BrassDomeNode.png"]= { - ["x"]= 234, + ["x"]= 182, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/Champion/AnEAttDamage.png"]= { - ["x"]= 260, + ["x"]= 208, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/Champion/AnEAura.png"]= { - ["x"]= 286, + ["x"]= 234, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/Champion/AnEFortify.png"]= { - ["x"]= 312, + ["x"]= 260, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/Champion/AnETaunt.png"]= { - ["x"]= 338, + ["x"]= 286, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/Champion/ImpalePassive.png"]= { - ["x"]= 364, + ["x"]= 312, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/ChaosDamage.png"]= { - ["x"]= 390, + ["x"]= 338, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/ChaosDamageOverTimeNode.png"]= { - ["x"]= 416, + ["x"]= 364, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/ChaosDamagenode.png"]= { - ["x"]= 442, + ["x"]= 390, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/ChaosResistNode.png"]= { - ["x"]= 468, + ["x"]= 416, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/ChaosResistNotable.png"]= { - ["x"]= 494, + ["x"]= 442, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/Chieftain/LifeRegenFireDamage.png"]= { - ["x"]= 520, + ["x"]= 468, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/Chieftain/LifeRegenStrength.png"]= { - ["x"]= 546, + ["x"]= 494, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/Chieftain/LifeRegenTotemPlacementSpeed.png"]= { - ["x"]= 572, + ["x"]= 520, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/ClawCritStrikeChanceNode.png"]= { - ["x"]= 598, + ["x"]= 546, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/ColdAndFireHybridNode.png"]= { - ["x"]= 624, + ["x"]= 572, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/ColdDamageOverTimeNode.png"]= { - ["x"]= 650, + ["x"]= 598, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/ColdDamagenode.png"]= { - ["x"]= 676, + ["x"]= 624, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/ColdResistNode.png"]= { - ["x"]= 702, + ["x"]= 650, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/CooldownWarcryNode1.png"]= { - ["x"]= 728, + ["x"]= 676, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/CorpseDamage.png"]= { - ["x"]= 754, + ["x"]= 702, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/CorpseLife.png"]= { - ["x"]= 780, + ["x"]= 728, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/CurseAreaofEffect.png"]= { - ["x"]= 806, + ["x"]= 754, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/CurseCastSpeed.png"]= { - ["x"]= 832, + ["x"]= 780, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/CurseDuration.png"]= { - ["x"]= 858, + ["x"]= 806, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/CurseEffectNode.png"]= { - ["x"]= 884, + ["x"]= 832, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/CurseManaCost.png"]= { - ["x"]= 910, + ["x"]= 858, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/CurseManaReservation.png"]= { - ["x"]= 936, + ["x"]= 884, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/CursemitigationclusterNode.png"]= { + ["x"]= 910, + ["y"]= 52, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/CybilsClawNode.png"]= { + ["x"]= 936, + ["y"]= 52, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/DamageOverTime.png"]= { + ["x"]= 962, + ["y"]= 52, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/DamageOverTimeNode.png"]= { ["x"]= 0, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/CybilsClawNode.png"]= { + ["Art/2DArt/SkillIcons/passives/DeadEye/ProjectileDamageAccuracy.png"]= { ["x"]= 26, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/DamageOverTime.png"]= { + ["Art/2DArt/SkillIcons/passives/DeadEye/ProjectileDamageAttackSpeed.png"]= { ["x"]= 52, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/DamageOverTimeNode.png"]= { + ["Art/2DArt/SkillIcons/passives/DivineFury.png"]= { ["x"]= 78, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/DeadEye/ProjectileDamageAccuracy.png"]= { + ["Art/2DArt/SkillIcons/passives/DivineWrath.png"]= { ["x"]= 104, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/DeadEye/ProjectileDamageAttackSpeed.png"]= { + ["Art/2DArt/SkillIcons/passives/DmgHeraldSkillsNode.png"]= { ["x"]= 130, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/DivineFury.png"]= { + ["Art/2DArt/SkillIcons/passives/DmgWhenChannelSkillsNode.png"]= { ["x"]= 156, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/DivineWrath.png"]= { + ["Art/2DArt/SkillIcons/passives/DodgeAtksNode.png"]= { ["x"]= 182, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/DmgHeraldSkillsNode.png"]= { + ["Art/2DArt/SkillIcons/passives/DualWieldNodeDefensive.png"]= { ["x"]= 208, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/DmgWhenChannelSkillsNode.png"]= { + ["Art/2DArt/SkillIcons/passives/DualWieldNodeOffensive.png"]= { ["x"]= 234, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/DodgeAtksNode.png"]= { + ["Art/2DArt/SkillIcons/passives/DurationofMinionsNode.png"]= { ["x"]= 260, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/DualWieldNodeDefensive.png"]= { + ["Art/2DArt/SkillIcons/passives/ElementalDamagenode.png"]= { ["x"]= 286, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/DualWieldNodeOffensive.png"]= { + ["Art/2DArt/SkillIcons/passives/ElementalResistance2.png"]= { ["x"]= 312, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/DurationofMinionsNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Elementalist/ElementalDamageAttackCasteSpeed.png"]= { ["x"]= 338, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/ElementalDamagenode.png"]= { + ["Art/2DArt/SkillIcons/passives/Elementalist/ElementalDamageElementalResistances.png"]= { ["x"]= 364, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/ElementalResistance2.png"]= { + ["Art/2DArt/SkillIcons/passives/Elementalist/ElementalDamageFreezeShockIgnite.png"]= { ["x"]= 390, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Elementalist/ElementalDamageAttackCasteSpeed.png"]= { + ["Art/2DArt/SkillIcons/passives/EmpoweredAttackWarcryNode1.png"]= { ["x"]= 416, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Elementalist/ElementalDamageElementalResistances.png"]= { + ["Art/2DArt/SkillIcons/passives/EnergyShieldNode.png"]= { ["x"]= 442, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Elementalist/ElementalDamageFreezeShockIgnite.png"]= { + ["Art/2DArt/SkillIcons/passives/EnergyshieldLeechPassivessmall.png"]= { ["x"]= 468, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/EmpoweredAttackWarcryNode1.png"]= { + ["Art/2DArt/SkillIcons/passives/EvasionNode.png"]= { ["x"]= 494, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/EnergyShieldNode.png"]= { + ["Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.png"]= { ["x"]= 520, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/EnergyshieldLeechPassivessmall.png"]= { + ["Art/2DArt/SkillIcons/passives/FireDamageOverTimeNode.png"]= { ["x"]= 546, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/EvasionNode.png"]= { + ["Art/2DArt/SkillIcons/passives/FireDamagenode.png"]= { ["x"]= 572, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.png"]= { + ["Art/2DArt/SkillIcons/passives/FireResistNode.png"]= { ["x"]= 598, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/FireDamageOverTimeNode.png"]= { + ["Art/2DArt/SkillIcons/passives/FlaskDurationnode.png"]= { ["x"]= 624, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/FireDamagenode.png"]= { + ["Art/2DArt/SkillIcons/passives/FortifyNode.png"]= { ["x"]= 650, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/FireResistNode.png"]= { + ["Art/2DArt/SkillIcons/passives/GenericWarcryNode1.png"]= { ["x"]= 676, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/FlaskDurationnode.png"]= { + ["Art/2DArt/SkillIcons/passives/GenericWarcryNode2.png"]= { ["x"]= 702, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/FortifyNode.png"]= { + ["Art/2DArt/SkillIcons/passives/GenericWarcryNode3.png"]= { ["x"]= 728, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/GenericWarcryNode1.png"]= { + ["Art/2DArt/SkillIcons/passives/Gladiator/GLADBlockChance.png"]= { ["x"]= 754, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/GenericWarcryNode2.png"]= { + ["Art/2DArt/SkillIcons/passives/Gladiator/GLADOneHand.png"]= { ["x"]= 780, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/GenericWarcryNode3.png"]= { + ["Art/2DArt/SkillIcons/passives/GolemsNode.png"]= { ["x"]= 806, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Gladiator/GLADBlockChance.png"]= { + ["Art/2DArt/SkillIcons/passives/GraceoftheGoddessNode.png"]= { ["x"]= 832, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Gladiator/GLADOneHand.png"]= { + ["Art/2DArt/SkillIcons/passives/GreenPhysicalDamageNode.png"]= { ["x"]= 858, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/GolemsNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Guardian/ArmourEnergyMeleeDamage.png"]= { ["x"]= 884, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/GraceoftheGoddessNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Guardian/ArmourEnergyShieldDefenseFromShields.png"]= { ["x"]= 910, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/GreenPhysicalDamageNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Guardian/ArmourEnergyShieldManaPool.png"]= { ["x"]= 936, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Guardian/ArmourEnergyMeleeDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/Guardian/ArmourEnergyShieldStaves.png"]= { + ["x"]= 962, + ["y"]= 78, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Guardian/GuardianHallowingFlameNode.png"]= { ["x"]= 0, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Guardian/ArmourEnergyShieldDefenseFromShields.png"]= { + ["Art/2DArt/SkillIcons/passives/Guardian/Minion Damage Armour and Energy Shield.png"]= { ["x"]= 26, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Guardian/ArmourEnergyShieldManaPool.png"]= { + ["Art/2DArt/SkillIcons/passives/Guardian/TimeOfNeed.png"]= { ["x"]= 52, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Guardian/ArmourEnergyShieldStaves.png"]= { + ["Art/2DArt/SkillIcons/passives/HalfColdHalfLightning.png"]= { ["x"]= 78, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Guardian/GuardianHallowingFlameNode.png"]= { + ["Art/2DArt/SkillIcons/passives/HeartbreakerNode.png"]= { ["x"]= 104, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Guardian/Minion Damage Armour and Energy Shield.png"]= { + ["Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.png"]= { ["x"]= 130, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Guardian/TimeOfNeed.png"]= { + ["Art/2DArt/SkillIcons/passives/HeraldDamageNotable.png"]= { ["x"]= 156, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/HalfColdHalfLightning.png"]= { + ["Art/2DArt/SkillIcons/passives/HeraldReservationNode.png"]= { ["x"]= 182, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/HeartbreakerNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Hierophant/ManaRegen.png"]= { ["x"]= 208, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.png"]= { + ["Art/2DArt/SkillIcons/passives/IgniteBleedNode.png"]= { ["x"]= 234, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/HeraldDamageNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/ImapleNode.png"]= { ["x"]= 260, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/HeraldReservationNode.png"]= { + ["Art/2DArt/SkillIcons/passives/ImpaleNode2.png"]= { ["x"]= 286, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Hierophant/ManaRegen.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreaseCritChanceNode.png"]= { ["x"]= 312, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/IgniteBleedNode.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreaseMinionLifeNode.png"]= { ["x"]= 338, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/ImapleNode.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreasedAttackDamageNode.png"]= { ["x"]= 364, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/ImpaleNode2.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreasedManaCostNode.png"]= { ["x"]= 390, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/IncreaseCritChanceNode.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreasedMaximumLifeNode.png"]= { ["x"]= 416, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/IncreaseMinionLifeNode.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreasedMinionDamageNode.png"]= { ["x"]= 442, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/IncreasedAttackDamageNode.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreasedNonDamageAilmentNode.png"]= { ["x"]= 468, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/IncreasedManaCostNode.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreasedProjectileSpeedNode.png"]= { ["x"]= 494, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/IncreasedMaximumLifeNode.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreasedSpellDamageNode.png"]= { ["x"]= 520, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/IncreasedMinionDamageNode.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreasedWarcryNode.png"]= { ["x"]= 546, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/IncreasedNonDamageAilmentNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageAttackCasteSpeed.png"]= { ["x"]= 572, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/IncreasedProjectileSpeedNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageAvoidElementalStatusEffects.png"]= { ["x"]= 598, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/IncreasedSpellDamageNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageCasteSpeed.png"]= { ["x"]= 624, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/IncreasedWarcryNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageElementalPenetration.png"]= { ["x"]= 650, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageAttackCasteSpeed.png"]= { + ["Art/2DArt/SkillIcons/passives/JacktheaxeNode.png"]= { ["x"]= 676, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageAvoidElementalStatusEffects.png"]= { + ["Art/2DArt/SkillIcons/passives/Juggernaut/IncreasedArmourAttackDamage.png"]= { ["x"]= 702, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageCasteSpeed.png"]= { + ["Art/2DArt/SkillIcons/passives/Juggernaut/IncreasedArmourAttackSpeed.png"]= { ["x"]= 728, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageElementalPenetration.png"]= { + ["Art/2DArt/SkillIcons/passives/Juggernaut/IncreasedArmourLifeRegeneration.png"]= { ["x"]= 754, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/JacktheaxeNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Juggernaut/IncreasedArmourMovementSpeed.png"]= { ["x"]= 780, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Juggernaut/IncreasedArmourAttackDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/Juggernaut/IncreasedArmourStunDuration.png"]= { ["x"]= 806, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Juggernaut/IncreasedArmourAttackSpeed.png"]= { + ["Art/2DArt/SkillIcons/passives/Juggernaut/JuggernautArmourNotable.png"]= { ["x"]= 832, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Juggernaut/IncreasedArmourLifeRegeneration.png"]= { + ["Art/2DArt/SkillIcons/passives/KeystoneArmourMaster.png"]= { ["x"]= 858, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Juggernaut/IncreasedArmourMovementSpeed.png"]= { + ["Art/2DArt/SkillIcons/passives/KiloavaShieldNode.png"]= { ["x"]= 884, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Juggernaut/IncreasedArmourStunDuration.png"]= { + ["Art/2DArt/SkillIcons/passives/KitavasHungerNode.png"]= { ["x"]= 910, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Juggernaut/JuggernautArmourNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/LifeAndEnergyShield.png"]= { ["x"]= 936, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/KeystoneArmourMaster.png"]= { + ["Art/2DArt/SkillIcons/passives/LifeAndReducedManaCost.png"]= { + ["x"]= 962, + ["y"]= 104, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/LifeManaFlasksrecoverynode.png"]= { ["x"]= 0, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/KiloavaShieldNode.png"]= { + ["Art/2DArt/SkillIcons/passives/LifeRecoupNode.png"]= { ["x"]= 26, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/KitavasHungerNode.png"]= { + ["Art/2DArt/SkillIcons/passives/LifeandCurses.png"]= { ["x"]= 52, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/LifeAndEnergyShield.png"]= { + ["Art/2DArt/SkillIcons/passives/LifeandMana.png"]= { ["x"]= 78, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/LifeAndReducedManaCost.png"]= { + ["Art/2DArt/SkillIcons/passives/LightningDamagenode.png"]= { ["x"]= 104, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/LifeManaFlasksrecoverynode.png"]= { + ["Art/2DArt/SkillIcons/passives/LightningResistNode.png"]= { ["x"]= 130, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/LifeRecoupNode.png"]= { + ["Art/2DArt/SkillIcons/passives/MaataSceptreNode.png"]= { ["x"]= 156, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/LifeandCurses.png"]= { + ["Art/2DArt/SkillIcons/passives/MaceElemental.png"]= { ["x"]= 182, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/LifeandMana.png"]= { + ["Art/2DArt/SkillIcons/passives/ManaAndEnergyShield.png"]= { ["x"]= 208, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/LightningDamagenode.png"]= { + ["Art/2DArt/SkillIcons/passives/ManaLeechThemedNode.png"]= { ["x"]= 234, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/LightningResistNode.png"]= { + ["Art/2DArt/SkillIcons/passives/ManaandCurses2.png"]= { ["x"]= 260, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/MaataSceptreNode.png"]= { + ["Art/2DArt/SkillIcons/passives/MarkNode.png"]= { ["x"]= 286, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/MaceElemental.png"]= { + ["Art/2DArt/SkillIcons/passives/MasteryBlank.png"]= { ["x"]= 312, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/ManaAndEnergyShield.png"]= { + ["Art/2DArt/SkillIcons/passives/MawOfConquestNode.png"]= { ["x"]= 338, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/ManaLeechThemedNode.png"]= { + ["Art/2DArt/SkillIcons/passives/MaxManaNode.png"]= { ["x"]= 364, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/ManaandCurses2.png"]= { + ["Art/2DArt/SkillIcons/passives/MeleeAoENode.png"]= { ["x"]= 390, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/MarkNode.png"]= { + ["Art/2DArt/SkillIcons/passives/MeleeCriticalStrikeChanceNode.png"]= { ["x"]= 416, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/MasteryBlank.png"]= { + ["Art/2DArt/SkillIcons/passives/MeleeCriticalStrikeMultiplierNode.png"]= { ["x"]= 442, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/MawOfConquestNode.png"]= { + ["Art/2DArt/SkillIcons/passives/MeleeFireNode.png"]= { ["x"]= 468, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/MaxManaNode.png"]= { + ["Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.png"]= { ["x"]= 494, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/MeleeAoENode.png"]= { + ["Art/2DArt/SkillIcons/passives/MineManaReservationNode.png"]= { ["x"]= 520, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/MeleeCriticalStrikeChanceNode.png"]= { + ["Art/2DArt/SkillIcons/passives/MinionAccuracyDamage.png"]= { ["x"]= 546, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/MeleeCriticalStrikeMultiplierNode.png"]= { + ["Art/2DArt/SkillIcons/passives/MinionChaosResistanceNode.png"]= { ["x"]= 572, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/MeleeFireNode.png"]= { + ["Art/2DArt/SkillIcons/passives/MinionDmgHeraldSkillsNode.png"]= { ["x"]= 598, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.png"]= { + ["Art/2DArt/SkillIcons/passives/MinionElementalResistancesNode.png"]= { ["x"]= 624, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/MineManaReservationNode.png"]= { + ["Art/2DArt/SkillIcons/passives/MovementSpeedandEvasionPassive.png"]= { ["x"]= 650, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/MinionAccuracyDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/MysticRefractorNode.png"]= { ["x"]= 676, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/MinionChaosResistanceNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Necromancer/CorpseConsumptionNode.png"]= { ["x"]= 702, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/MinionDmgHeraldSkillsNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Necromancer/IncreasedMinionDamageIncreasedMinionLife.png"]= { ["x"]= 728, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/MinionElementalResistancesNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Necromancer/IncreasedMinionDamageIncreasedSkillDuration.png"]= { ["x"]= 754, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/MovementSpeedandEvasionPassive.png"]= { + ["Art/2DArt/SkillIcons/passives/Necromancer/ManaNode.png"]= { ["x"]= 780, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/MysticRefractorNode.png"]= { + ["Art/2DArt/SkillIcons/passives/NodeAxeandSwordDamage.png"]= { ["x"]= 806, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Necromancer/CorpseConsumptionNode.png"]= { + ["Art/2DArt/SkillIcons/passives/NodeBowDamage.png"]= { ["x"]= 832, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Necromancer/IncreasedMinionDamageIncreasedMinionLife.png"]= { + ["Art/2DArt/SkillIcons/passives/NodeDaggerandClawDamage.png"]= { ["x"]= 858, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Necromancer/IncreasedMinionDamageIncreasedSkillDuration.png"]= { + ["Art/2DArt/SkillIcons/passives/NodeDualWieldingDamage.png"]= { ["x"]= 884, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Necromancer/ManaNode.png"]= { + ["Art/2DArt/SkillIcons/passives/NodeHoldingShieldDamage.png"]= { ["x"]= 910, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/NodeAxeandSwordDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/NodeMaceandStaffDamage.png"]= { ["x"]= 936, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/NodeBowDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/NodeTwoHandedMeleeDamage.png"]= { + ["x"]= 962, + ["y"]= 130, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/NodeWandDamage.png"]= { ["x"]= 0, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/NodeDaggerandClawDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/Occultist/EnergyShieldChaos.png"]= { ["x"]= 26, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/NodeDualWieldingDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/Occultist/EnergyShieldCold.png"]= { ["x"]= 52, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/NodeHoldingShieldDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/Occultist/IncreasedEnergyShieldAttackAndCastSpeed.png"]= { ["x"]= 78, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/NodeMaceandStaffDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/Occultist/IncreasedEnergyShieldCriticalStrikeChance.png"]= { ["x"]= 104, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/NodeTwoHandedMeleeDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/Occultist/IncreasedEnergyShieldManaReservation.png"]= { ["x"]= 130, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/NodeWandDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/Occultist/IncreasedEnergyShieldMaximumMana.png"]= { ["x"]= 156, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Occultist/EnergyShieldChaos.png"]= { + ["Art/2DArt/SkillIcons/passives/OneHandedPhysicalAndLeechNode.png"]= { ["x"]= 182, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Occultist/EnergyShieldCold.png"]= { + ["Art/2DArt/SkillIcons/passives/OneHandedPhysicalAndLeechNotable.png"]= { ["x"]= 208, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Occultist/IncreasedEnergyShieldAttackAndCastSpeed.png"]= { + ["Art/2DArt/SkillIcons/passives/PathFinder/FlaskEffectDamageOverTime.png"]= { ["x"]= 234, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Occultist/IncreasedEnergyShieldCriticalStrikeChance.png"]= { + ["Art/2DArt/SkillIcons/passives/PathFinder/FlaskEffectElementalResistance.png"]= { ["x"]= 260, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Occultist/IncreasedEnergyShieldManaReservation.png"]= { + ["Art/2DArt/SkillIcons/passives/PathFinder/FlaskEffectFlaskDuration.png"]= { ["x"]= 286, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Occultist/IncreasedEnergyShieldMaximumMana.png"]= { + ["Art/2DArt/SkillIcons/passives/PhysicalDamageNode.png"]= { ["x"]= 312, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/OneHandedPhysicalAndLeechNode.png"]= { + ["Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.png"]= { ["x"]= 338, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/OneHandedPhysicalAndLeechNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimenode3.png"]= { ["x"]= 364, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/PathFinder/FlaskEffectDamageOverTime.png"]= { + ["Art/2DArt/SkillIcons/passives/PhysicalDamagenode2.png"]= { ["x"]= 390, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/PathFinder/FlaskEffectElementalResistance.png"]= { + ["Art/2DArt/SkillIcons/passives/PhysicalandChaosDamage.png"]= { ["x"]= 416, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/PathFinder/FlaskEffectFlaskDuration.png"]= { + ["Art/2DArt/SkillIcons/passives/Poison.png"]= { ["x"]= 442, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/PhysicalDamageNode.png"]= { + ["Art/2DArt/SkillIcons/passives/PoisonSpellsNode.png"]= { ["x"]= 468, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Primalist/PrimalistNode.png"]= { ["x"]= 494, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimenode3.png"]= { + ["Art/2DArt/SkillIcons/passives/PrimordialCaneNode.png"]= { ["x"]= 520, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/PhysicalDamagenode2.png"]= { + ["Art/2DArt/SkillIcons/passives/ProjectileDmgNode.png"]= { ["x"]= 546, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/PhysicalandChaosDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/ProjectilesNode.png"]= { ["x"]= 572, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Poison.png"]= { + ["Art/2DArt/SkillIcons/passives/ProjectilesNode2.png"]= { ["x"]= 598, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/PoisonSpellsNode.png"]= { + ["Art/2DArt/SkillIcons/passives/ProsperosProtectionNode.png"]= { ["x"]= 624, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Primalist/PrimalistNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Rage.png"]= { ["x"]= 650, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/PrimordialCaneNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Raider/IncreasedElementalDamage.png"]= { ["x"]= 676, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/ProjectileDmgNode.png"]= { + ["Art/2DArt/SkillIcons/passives/RangedTotemAttackSpeed.png"]= { ["x"]= 702, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/ProjectilesNode.png"]= { + ["Art/2DArt/SkillIcons/passives/RangedTotemDamage.png"]= { ["x"]= 728, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/ProjectilesNode2.png"]= { + ["Art/2DArt/SkillIcons/passives/RedAttackSmallPassive.png"]= { ["x"]= 754, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/ProsperosProtectionNode.png"]= { + ["Art/2DArt/SkillIcons/passives/ReducedManaCostNode.png"]= { ["x"]= 780, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Rage.png"]= { + ["Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.png"]= { ["x"]= 806, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Raider/IncreasedElementalDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/RetaliationNode1.png"]= { ["x"]= 832, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/RangedTotemAttackSpeed.png"]= { + ["Art/2DArt/SkillIcons/passives/RetaliationNode2.png"]= { ["x"]= 858, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/RangedTotemDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/RetaliationNode3.png"]= { ["x"]= 884, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/RedAttackSmallPassive.png"]= { + ["Art/2DArt/SkillIcons/passives/RetaliationNode4.png"]= { ["x"]= 910, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/ReducedManaCostNode.png"]= { + ["Art/2DArt/SkillIcons/passives/RetaliationNode5.png"]= { ["x"]= 936, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Saboteur/ElementalDamageElementalResistance.png"]= { + ["x"]= 962, + ["y"]= 156, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Saboteur/ElementalDamageMines.png"]= { ["x"]= 0, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/RetaliationNode1.png"]= { + ["Art/2DArt/SkillIcons/passives/Saboteur/ElementalDamageMovementSpeed.png"]= { ["x"]= 26, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/RetaliationNode2.png"]= { + ["Art/2DArt/SkillIcons/passives/SareshBloodlineNode.png"]= { ["x"]= 52, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/RetaliationNode3.png"]= { + ["Art/2DArt/SkillIcons/passives/SharpandBrittle.png"]= { ["x"]= 78, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/RetaliationNode4.png"]= { + ["Art/2DArt/SkillIcons/passives/ShieldAttackDamage.png"]= { ["x"]= 104, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/RetaliationNode5.png"]= { + ["Art/2DArt/SkillIcons/passives/ShieldNodeOffensive.png"]= { ["x"]= 130, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Saboteur/ElementalDamageElementalResistance.png"]= { + ["Art/2DArt/SkillIcons/passives/Slayer/2HdmgAOE.png"]= { ["x"]= 156, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Saboteur/ElementalDamageMines.png"]= { + ["Art/2DArt/SkillIcons/passives/Slayer/2HdmgCritStrikeMultiplier.png"]= { ["x"]= 182, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Saboteur/ElementalDamageMovementSpeed.png"]= { + ["Art/2DArt/SkillIcons/passives/Slayer/2HdmgFrenzyEnduranceCharge.png"]= { ["x"]= 208, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/SareshBloodlineNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Slayer/2HdmgLeech.png"]= { ["x"]= 234, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/SharpandBrittle.png"]= { + ["Art/2DArt/SkillIcons/passives/Slayer/2HdmgSpeed.png"]= { ["x"]= 260, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/ShieldAttackDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/SpeedWarcryNode1.png"]= { ["x"]= 286, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/ShieldNodeOffensive.png"]= { + ["Art/2DArt/SkillIcons/passives/SpellMultiplyer2.png"]= { ["x"]= 312, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Slayer/2HdmgAOE.png"]= { + ["Art/2DArt/SkillIcons/passives/SpellSuppresionNode.png"]= { ["x"]= 338, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Slayer/2HdmgCritStrikeMultiplier.png"]= { + ["Art/2DArt/SkillIcons/passives/SpellSuppressionEnergyShield.png"]= { ["x"]= 364, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Slayer/2HdmgFrenzyEnduranceCharge.png"]= { + ["Art/2DArt/SkillIcons/passives/SpellSuppressionLifeFlasks.png"]= { ["x"]= 390, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Slayer/2HdmgLeech.png"]= { + ["Art/2DArt/SkillIcons/passives/StaffNodeDefensive.png"]= { ["x"]= 416, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Slayer/2HdmgSpeed.png"]= { + ["Art/2DArt/SkillIcons/passives/StaffNodeOffensive.png"]= { ["x"]= 442, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/SpeedWarcryNode1.png"]= { + ["Art/2DArt/SkillIcons/passives/StanceSmallPassive.png"]= { ["x"]= 468, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/SpellMultiplyer2.png"]= { + ["Art/2DArt/SkillIcons/passives/StancesNode.png"]= { ["x"]= 494, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/SpellSuppresionNode.png"]= { + ["Art/2DArt/SkillIcons/passives/StrikeRangeNode.png"]= { ["x"]= 520, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/SpellSuppressionEnergyShield.png"]= { + ["Art/2DArt/SkillIcons/passives/TearOfPurityNode.png"]= { ["x"]= 546, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/SpellSuppressionLifeFlasks.png"]= { + ["Art/2DArt/SkillIcons/passives/TerminusEstNode.png"]= { ["x"]= 572, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/StaffNodeDefensive.png"]= { + ["Art/2DArt/SkillIcons/passives/TheBurdenOfTruthNode.png"]= { ["x"]= 598, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/StaffNodeOffensive.png"]= { + ["Art/2DArt/SkillIcons/passives/TheBurdenofShadowsNode.png"]= { ["x"]= 624, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/StanceSmallPassive.png"]= { + ["Art/2DArt/SkillIcons/passives/TinctureFlaskNode1.png"]= { ["x"]= 650, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/StancesNode.png"]= { + ["Art/2DArt/SkillIcons/passives/TinctureNode1.png"]= { ["x"]= 676, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/StrikeRangeNode.png"]= { + ["Art/2DArt/SkillIcons/passives/TinctureNode2.png"]= { ["x"]= 702, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/TearOfPurityNode.png"]= { + ["Art/2DArt/SkillIcons/passives/TinctureNode3.png"]= { ["x"]= 728, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/TerminusEstNode.png"]= { + ["Art/2DArt/SkillIcons/passives/TotemDmgNode.png"]= { ["x"]= 754, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/TheBurdenOfTruthNode.png"]= { + ["Art/2DArt/SkillIcons/passives/TrapAndMineDmgNode.png"]= { ["x"]= 780, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/TheBurdenofShadowsNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Trickster/DefensiveNodeTrickster.png"]= { ["x"]= 806, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/TinctureFlaskNode1.png"]= { + ["Art/2DArt/SkillIcons/passives/Trickster/OffensiveNodeTrickster.png"]= { ["x"]= 832, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/TinctureNode1.png"]= { + ["Art/2DArt/SkillIcons/passives/VersusoBootsNode.png"]= { ["x"]= 858, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/TinctureNode2.png"]= { + ["Art/2DArt/SkillIcons/passives/VictariosJacketNode.png"]= { ["x"]= 884, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/TinctureNode3.png"]= { + ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanCurses2.png"]= { ["x"]= 910, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/TotemDmgNode.png"]= { + ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanNode.png"]= { ["x"]= 936, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/TrapAndMineDmgNode.png"]= { + ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanSpecialCurse1.png"]= { + ["x"]= 962, + ["y"]= 182, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanSpecialCurse2.png"]= { ["x"]= 0, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Trickster/DefensiveNodeTrickster.png"]= { + ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanSpecialCurse3.png"]= { ["x"]= 26, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Trickster/OffensiveNodeTrickster.png"]= { + ["Art/2DArt/SkillIcons/passives/WandCritical.png"]= { ["x"]= 52, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/VersusoBootsNode.png"]= { + ["Art/2DArt/SkillIcons/passives/WandSpeedAccuracyNode.png"]= { ["x"]= 78, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/VictariosJacketNode.png"]= { + ["Art/2DArt/SkillIcons/passives/WarCryCooldown.png"]= { ["x"]= 104, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanCurses2.png"]= { + ["Art/2DArt/SkillIcons/passives/WarcryBuffEffectNotable.png"]= { ["x"]= 130, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Warden/SpellSuppressionEvasion.png"]= { ["x"]= 156, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanSpecialCurse1.png"]= { + ["Art/2DArt/SkillIcons/passives/Warden/TincturesNode.png"]= { ["x"]= 182, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanSpecialCurse2.png"]= { + ["Art/2DArt/SkillIcons/passives/Warden/WardenNode.png"]= { ["x"]= 208, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanSpecialCurse3.png"]= { + ["Art/2DArt/SkillIcons/passives/Warden/WardenTracking.png"]= { ["x"]= 234, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/WandCritical.png"]= { + ["Art/2DArt/SkillIcons/passives/WarpedTimepieceNode.png"]= { ["x"]= 260, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/WandSpeedAccuracyNode.png"]= { + ["Art/2DArt/SkillIcons/passives/WidowhailBowNode.png"]= { ["x"]= 286, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/WarCryCooldown.png"]= { + ["Art/2DArt/SkillIcons/passives/accuracy.png"]= { ["x"]= 312, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/WarcryBuffEffectNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/accuracy2h.png"]= { ["x"]= 338, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Warden/SpellSuppressionEvasion.png"]= { + ["Art/2DArt/SkillIcons/passives/accuracydex.png"]= { ["x"]= 364, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Warden/TincturesNode.png"]= { + ["Art/2DArt/SkillIcons/passives/accuracysword.png"]= { ["x"]= 390, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Warden/WardenNode.png"]= { + ["Art/2DArt/SkillIcons/passives/arcaneradience.png"]= { ["x"]= 416, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Warden/WardenTracking.png"]= { + ["Art/2DArt/SkillIcons/passives/areaofeffect.png"]= { ["x"]= 442, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/WarpedTimepieceNode.png"]= { + ["Art/2DArt/SkillIcons/passives/attackspeed.png"]= { ["x"]= 468, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/WidowhailBowNode.png"]= { + ["Art/2DArt/SkillIcons/passives/attackspeed2h.png"]= { ["x"]= 494, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/accuracy.png"]= { + ["Art/2DArt/SkillIcons/passives/attackspeedaxe.png"]= { ["x"]= 520, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/accuracy2h.png"]= { + ["Art/2DArt/SkillIcons/passives/attackspeedbow.png"]= { ["x"]= 546, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/accuracydex.png"]= { + ["Art/2DArt/SkillIcons/passives/attackspeedclaw.png"]= { ["x"]= 572, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/accuracysword.png"]= { + ["Art/2DArt/SkillIcons/passives/attackspeeddagger.png"]= { ["x"]= 598, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/arcaneradience.png"]= { + ["Art/2DArt/SkillIcons/passives/attackspeeddual.png"]= { ["x"]= 624, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/areaofeffect.png"]= { + ["Art/2DArt/SkillIcons/passives/attackspeedmace.png"]= { ["x"]= 650, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/attackspeed.png"]= { + ["Art/2DArt/SkillIcons/passives/attackspeedsworddex.png"]= { ["x"]= 676, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/attackspeed2h.png"]= { + ["Art/2DArt/SkillIcons/passives/auraareaofeffect.png"]= { ["x"]= 702, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/attackspeedaxe.png"]= { + ["Art/2DArt/SkillIcons/passives/auraeffect.png"]= { ["x"]= 728, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/attackspeedbow.png"]= { + ["Art/2DArt/SkillIcons/passives/avoidburning.png"]= { ["x"]= 754, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/attackspeedclaw.png"]= { + ["Art/2DArt/SkillIcons/passives/avoidchilling.png"]= { ["x"]= 780, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/attackspeeddagger.png"]= { + ["Art/2DArt/SkillIcons/passives/axedmgspeed.png"]= { ["x"]= 806, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/attackspeeddual.png"]= { + ["Art/2DArt/SkillIcons/passives/blankDex.png"]= { ["x"]= 832, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/attackspeedmace.png"]= { + ["Art/2DArt/SkillIcons/passives/blankInt.png"]= { ["x"]= 858, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/attackspeedsworddex.png"]= { + ["Art/2DArt/SkillIcons/passives/blankStr.png"]= { ["x"]= 884, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/auraareaofeffect.png"]= { + ["Art/2DArt/SkillIcons/passives/blastradius.png"]= { ["x"]= 910, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/auraeffect.png"]= { + ["Art/2DArt/SkillIcons/passives/blockstaff.png"]= { ["x"]= 936, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/avoidburning.png"]= { + ["Art/2DArt/SkillIcons/passives/blockstr.png"]= { + ["x"]= 962, + ["y"]= 208, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/castavoidinterruption.png"]= { ["x"]= 0, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/avoidchilling.png"]= { + ["Art/2DArt/SkillIcons/passives/castspeed.png"]= { ["x"]= 26, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/axedmgspeed.png"]= { + ["Art/2DArt/SkillIcons/passives/chargedex.png"]= { ["x"]= 52, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/blankDex.png"]= { + ["Art/2DArt/SkillIcons/passives/chargeint.png"]= { ["x"]= 78, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/blankInt.png"]= { + ["Art/2DArt/SkillIcons/passives/chargestr.png"]= { ["x"]= 104, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/blankStr.png"]= { + ["Art/2DArt/SkillIcons/passives/clawmasterydex.png"]= { ["x"]= 130, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/blastradius.png"]= { + ["Art/2DArt/SkillIcons/passives/clustersLinknode1.png"]= { ["x"]= 156, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/blockstaff.png"]= { + ["Art/2DArt/SkillIcons/passives/clustersLinknode2.png"]= { ["x"]= 182, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/blockstr.png"]= { + ["Art/2DArt/SkillIcons/passives/colddamage.png"]= { ["x"]= 208, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/castavoidinterruption.png"]= { + ["Art/2DArt/SkillIcons/passives/coldresist.png"]= { ["x"]= 234, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/castspeed.png"]= { + ["Art/2DArt/SkillIcons/passives/criticalbow.png"]= { ["x"]= 260, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/chargedex.png"]= { + ["Art/2DArt/SkillIcons/passives/criticalclaw.png"]= { ["x"]= 286, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/chargeint.png"]= { + ["Art/2DArt/SkillIcons/passives/criticaldaggerdex.png"]= { ["x"]= 312, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/chargestr.png"]= { + ["Art/2DArt/SkillIcons/passives/criticaldaggerint.png"]= { ["x"]= 338, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/clawmasterydex.png"]= { + ["Art/2DArt/SkillIcons/passives/criticalstrikechance.png"]= { ["x"]= 364, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/clustersLinknode1.png"]= { + ["Art/2DArt/SkillIcons/passives/criticalstrikechance2.png"]= { ["x"]= 390, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/clustersLinknode2.png"]= { + ["Art/2DArt/SkillIcons/passives/criticalstrikemultiplier.png"]= { ["x"]= 416, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/colddamage.png"]= { + ["Art/2DArt/SkillIcons/passives/criticalstrikemultiplier2.png"]= { ["x"]= 442, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/coldresist.png"]= { + ["Art/2DArt/SkillIcons/passives/critstrchnc.png"]= { ["x"]= 468, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/criticalbow.png"]= { + ["Art/2DArt/SkillIcons/passives/crystalskin.png"]= { ["x"]= 494, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/criticalclaw.png"]= { + ["Art/2DArt/SkillIcons/passives/damage.png"]= { ["x"]= 520, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/criticaldaggerdex.png"]= { + ["Art/2DArt/SkillIcons/passives/damage_blue.png"]= { ["x"]= 546, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/criticaldaggerint.png"]= { + ["Art/2DArt/SkillIcons/passives/damageaxe.png"]= { ["x"]= 572, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/criticalstrikechance.png"]= { + ["Art/2DArt/SkillIcons/passives/damagedualwield.png"]= { ["x"]= 598, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/criticalstrikechance2.png"]= { + ["Art/2DArt/SkillIcons/passives/damagedualwieldgreen.png"]= { ["x"]= 624, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/criticalstrikemultiplier.png"]= { + ["Art/2DArt/SkillIcons/passives/damagemelee.png"]= { ["x"]= 650, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/criticalstrikemultiplier2.png"]= { + ["Art/2DArt/SkillIcons/passives/damagespells.png"]= { ["x"]= 676, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/critstrchnc.png"]= { + ["Art/2DArt/SkillIcons/passives/damagestaff.png"]= { ["x"]= 702, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/crystalskin.png"]= { + ["Art/2DArt/SkillIcons/passives/damagesword.png"]= { ["x"]= 728, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/damage.png"]= { + ["Art/2DArt/SkillIcons/passives/dmgreduction.png"]= { ["x"]= 754, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/damage_blue.png"]= { + ["Art/2DArt/SkillIcons/passives/dualwieldaccuracy.png"]= { ["x"]= 780, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/damageaxe.png"]= { + ["Art/2DArt/SkillIcons/passives/dualwieldblock.png"]= { ["x"]= 806, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/damagedualwield.png"]= { + ["Art/2DArt/SkillIcons/passives/elementaldamage.png"]= { ["x"]= 832, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/damagedualwieldgreen.png"]= { + ["Art/2DArt/SkillIcons/passives/energyshield.png"]= { ["x"]= 858, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/damagemelee.png"]= { + ["Art/2DArt/SkillIcons/passives/evade.png"]= { ["x"]= 884, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/damagespells.png"]= { + ["Art/2DArt/SkillIcons/passives/evadepercentage.png"]= { ["x"]= 910, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/damagestaff.png"]= { + ["Art/2DArt/SkillIcons/passives/evasion.png"]= { ["x"]= 936, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/damagesword.png"]= { + ["Art/2DArt/SkillIcons/passives/firedamage.png"]= { + ["x"]= 962, + ["y"]= 234, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/firedamageint.png"]= { ["x"]= 0, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/dmgreduction.png"]= { + ["Art/2DArt/SkillIcons/passives/firedamagestr.png"]= { ["x"]= 26, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/dualwieldaccuracy.png"]= { + ["Art/2DArt/SkillIcons/passives/fireresist.png"]= { ["x"]= 52, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/dualwieldblock.png"]= { + ["Art/2DArt/SkillIcons/passives/flaskdex.png"]= { ["x"]= 78, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/elementaldamage.png"]= { + ["Art/2DArt/SkillIcons/passives/flaskint.png"]= { ["x"]= 104, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/energyshield.png"]= { + ["Art/2DArt/SkillIcons/passives/flaskstr.png"]= { ["x"]= 130, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/evade.png"]= { + ["Art/2DArt/SkillIcons/passives/increased armor.png"]= { ["x"]= 156, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/evadepercentage.png"]= { + ["Art/2DArt/SkillIcons/passives/increasedarmorandlife.png"]= { ["x"]= 182, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/evasion.png"]= { + ["Art/2DArt/SkillIcons/passives/increasedrunspeeddex.png"]= { ["x"]= 208, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/firedamage.png"]= { + ["Art/2DArt/SkillIcons/passives/innerforce.png"]= { ["x"]= 234, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/firedamageint.png"]= { + ["Art/2DArt/SkillIcons/passives/knockback.png"]= { ["x"]= 260, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/firedamagestr.png"]= { + ["Art/2DArt/SkillIcons/passives/life1.png"]= { ["x"]= 286, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/fireresist.png"]= { + ["Art/2DArt/SkillIcons/passives/lifegainpertarget.png"]= { ["x"]= 312, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/flaskdex.png"]= { + ["Art/2DArt/SkillIcons/passives/lifeleech.png"]= { ["x"]= 338, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/flaskint.png"]= { + ["Art/2DArt/SkillIcons/passives/lifemana.png"]= { ["x"]= 364, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/flaskstr.png"]= { + ["Art/2DArt/SkillIcons/passives/lifepercentage.png"]= { ["x"]= 390, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/increased armor.png"]= { + ["Art/2DArt/SkillIcons/passives/lightningdex.png"]= { ["x"]= 416, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/increasedarmorandlife.png"]= { + ["Art/2DArt/SkillIcons/passives/lightningint.png"]= { ["x"]= 442, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/increasedrunspeeddex.png"]= { + ["Art/2DArt/SkillIcons/passives/lightningstr.png"]= { ["x"]= 468, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/innerforce.png"]= { + ["Art/2DArt/SkillIcons/passives/macecritdmgspeed.png"]= { ["x"]= 494, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/knockback.png"]= { + ["Art/2DArt/SkillIcons/passives/macedmg.png"]= { ["x"]= 520, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/life1.png"]= { + ["Art/2DArt/SkillIcons/passives/mana.png"]= { ["x"]= 546, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/lifegainpertarget.png"]= { + ["Art/2DArt/SkillIcons/passives/manaregeneration.png"]= { ["x"]= 572, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/lifeleech.png"]= { + ["Art/2DArt/SkillIcons/passives/manareservationreduction.png"]= { ["x"]= 598, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/lifemana.png"]= { + ["Art/2DArt/SkillIcons/passives/manastr.png"]= { ["x"]= 624, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/lifepercentage.png"]= { + ["Art/2DArt/SkillIcons/passives/masterydaggerdex.png"]= { ["x"]= 650, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/lightningdex.png"]= { + ["Art/2DArt/SkillIcons/passives/masterysword.png"]= { ["x"]= 676, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/lightningint.png"]= { + ["Art/2DArt/SkillIcons/passives/masterywand.png"]= { ["x"]= 702, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/lightningstr.png"]= { + ["Art/2DArt/SkillIcons/passives/meleeattackspeed.png"]= { ["x"]= 728, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/macecritdmgspeed.png"]= { + ["Art/2DArt/SkillIcons/passives/minionattackspeed.png"]= { ["x"]= 754, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/macedmg.png"]= { + ["Art/2DArt/SkillIcons/passives/minionblockchance.png"]= { ["x"]= 780, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/mana.png"]= { + ["Art/2DArt/SkillIcons/passives/miniondamage.png"]= { ["x"]= 806, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/manaregeneration.png"]= { + ["Art/2DArt/SkillIcons/passives/miniondamageBlue.png"]= { ["x"]= 832, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/manareservationreduction.png"]= { + ["Art/2DArt/SkillIcons/passives/minionlife.png"]= { ["x"]= 858, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/manastr.png"]= { + ["Art/2DArt/SkillIcons/passives/onehanddamage.png"]= { ["x"]= 884, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/masterydaggerdex.png"]= { + ["Art/2DArt/SkillIcons/passives/onehandspeed.png"]= { ["x"]= 910, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/masterysword.png"]= { + ["Art/2DArt/SkillIcons/passives/plusdexterity.png"]= { ["x"]= 936, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/masterywand.png"]= { + ["Art/2DArt/SkillIcons/passives/plusintelligence.png"]= { + ["x"]= 962, + ["y"]= 260, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/plusintelligencedexterity.png"]= { ["x"]= 0, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/meleeattackspeed.png"]= { + ["Art/2DArt/SkillIcons/passives/plusstrength.png"]= { ["x"]= 26, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/minionattackspeed.png"]= { + ["Art/2DArt/SkillIcons/passives/plusstrengthdexterity.png"]= { ["x"]= 52, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/minionblockchance.png"]= { + ["Art/2DArt/SkillIcons/passives/plusstrengthintelligence.png"]= { ["x"]= 78, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/miniondamage.png"]= { + ["Art/2DArt/SkillIcons/passives/projectilespeed.png"]= { ["x"]= 104, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/miniondamageBlue.png"]= { + ["Art/2DArt/SkillIcons/passives/shieldblock.png"]= { ["x"]= 130, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/minionlife.png"]= { + ["Art/2DArt/SkillIcons/passives/skillduration.png"]= { ["x"]= 156, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/onehanddamage.png"]= { + ["Art/2DArt/SkillIcons/passives/spellcritical.png"]= { ["x"]= 182, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/onehandspeed.png"]= { + ["Art/2DArt/SkillIcons/passives/staffaccuracy.png"]= { ["x"]= 208, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/plusdexterity.png"]= { + ["Art/2DArt/SkillIcons/passives/staffspeed.png"]= { ["x"]= 234, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/plusintelligence.png"]= { + ["Art/2DArt/SkillIcons/passives/stundex.png"]= { ["x"]= 260, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/plusintelligencedexterity.png"]= { + ["Art/2DArt/SkillIcons/passives/stunmace.png"]= { ["x"]= 286, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/plusstrength.png"]= { + ["Art/2DArt/SkillIcons/passives/stunstr.png"]= { ["x"]= 312, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/plusstrengthdexterity.png"]= { + ["Art/2DArt/SkillIcons/passives/tempdex.png"]= { ["x"]= 338, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/plusstrengthintelligence.png"]= { + ["Art/2DArt/SkillIcons/passives/tempint.png"]= { ["x"]= 364, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/projectilespeed.png"]= { + ["Art/2DArt/SkillIcons/passives/totemandbrandattackspeed.png"]= { ["x"]= 390, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/shieldblock.png"]= { + ["Art/2DArt/SkillIcons/passives/totemandbranddamage.png"]= { ["x"]= 416, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/skillduration.png"]= { + ["Art/2DArt/SkillIcons/passives/totemandbrandrange.png"]= { ["x"]= 442, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/spellcritical.png"]= { + ["Art/2DArt/SkillIcons/passives/totemattackspeed.png"]= { ["x"]= 468, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/staffaccuracy.png"]= { + ["Art/2DArt/SkillIcons/passives/totemlife.png"]= { ["x"]= 494, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/staffspeed.png"]= { + ["Art/2DArt/SkillIcons/passives/trapcriticalstrike.png"]= { ["x"]= 520, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/stundex.png"]= { + ["Art/2DArt/SkillIcons/passives/trapdamage.png"]= { ["x"]= 546, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/stunmace.png"]= { + ["Art/2DArt/SkillIcons/passives/trapsduration.png"]= { ["x"]= 572, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/stunstr.png"]= { + ["Art/2DArt/SkillIcons/passives/trapsradius.png"]= { ["x"]= 598, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/tempdex.png"]= { + ["Art/2DArt/SkillIcons/passives/trapsspeed.png"]= { ["x"]= 624, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/tempint.png"]= { + ["Art/2DArt/SkillIcons/passives/weaponelementaldamagepercentage.png"]= { ["x"]= 650, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/totemandbrandattackspeed.png"]= { + ["Art/2DArt/SkillIcons/ArohonguiTribeSkill.png"]= { ["x"]= 676, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/totemandbranddamage.png"]= { + ["Art/2DArt/SkillIcons/HinekoraTribeSkill.png"]= { ["x"]= 702, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/totemandbrandrange.png"]= { + ["Art/2DArt/SkillIcons/KitavaTribeSkill.png"]= { ["x"]= 728, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/totemattackspeed.png"]= { + ["Art/2DArt/SkillIcons/NgamahuTribeSkill.png"]= { ["x"]= 754, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/totemlife.png"]= { + ["Art/2DArt/SkillIcons/RamakoTribeSkill.png"]= { ["x"]= 780, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/trapcriticalstrike.png"]= { + ["Art/2DArt/SkillIcons/RongokuraiTribeSkill.png"]= { ["x"]= 806, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/trapdamage.png"]= { + ["Art/2DArt/SkillIcons/TasalioTribeSkill.png"]= { ["x"]= 832, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/trapsduration.png"]= { + ["Art/2DArt/SkillIcons/TawhoaTribeSkill.png"]= { ["x"]= 858, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/trapsradius.png"]= { + ["Art/2DArt/SkillIcons/TukohamaTribeSkill.png"]= { ["x"]= 884, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/trapsspeed.png"]= { + ["Art/2DArt/SkillIcons/ValakoTribeSkill.png"]= { ["x"]= 910, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/weaponelementaldamagepercentage.png"]= { + ["Art/2DArt/SkillIcons/passives/HinekoraPassiveIcon1.png"]= { ["x"]= 936, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/ArohonguiTribeSkill.png"]= { - ["x"]= 0, - ["y"]= 312, - ["w"]= 26, - ["h"]= 26 - }, - ["Art/2DArt/SkillIcons/HinekoraTribeSkill.png"]= { - ["x"]= 26, - ["y"]= 312, - ["w"]= 26, - ["h"]= 26 - }, - ["Art/2DArt/SkillIcons/KitavaTribeSkill.png"]= { - ["x"]= 52, - ["y"]= 312, - ["w"]= 26, - ["h"]= 26 - }, - ["Art/2DArt/SkillIcons/NgamahuTribeSkill.png"]= { - ["x"]= 78, - ["y"]= 312, - ["w"]= 26, - ["h"]= 26 - }, - ["Art/2DArt/SkillIcons/RamakoTribeSkill.png"]= { - ["x"]= 104, - ["y"]= 312, - ["w"]= 26, - ["h"]= 26 - }, - ["Art/2DArt/SkillIcons/RongokuraiTribeSkill.png"]= { - ["x"]= 130, - ["y"]= 312, - ["w"]= 26, - ["h"]= 26 - }, - ["Art/2DArt/SkillIcons/TasalioTribeSkill.png"]= { - ["x"]= 156, - ["y"]= 312, - ["w"]= 26, - ["h"]= 26 - }, - ["Art/2DArt/SkillIcons/TawhoaTribeSkill.png"]= { - ["x"]= 182, - ["y"]= 312, - ["w"]= 26, - ["h"]= 26 - }, - ["Art/2DArt/SkillIcons/TukohamaTribeSkill.png"]= { - ["x"]= 208, - ["y"]= 312, - ["w"]= 26, - ["h"]= 26 - }, - ["Art/2DArt/SkillIcons/ValakoTribeSkill.png"]= { - ["x"]= 234, - ["y"]= 312, - ["w"]= 26, - ["h"]= 26 - }, - ["Art/2DArt/SkillIcons/passives/HinekoraPassiveIcon1.png"]= { - ["x"]= 260, - ["y"]= 312, - ["w"]= 26, - ["h"]= 26 - }, ["Art/2DArt/SkillIcons/passives/HinekoraPassiveIcon2.png"]= { - ["x"]= 286, - ["y"]= 312, + ["x"]= 962, + ["y"]= 286, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/HinekoraPassiveIcon3.png"]= { - ["x"]= 312, + ["x"]= 0, ["y"]= 312, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/SkillscostingLifenode.png"]= { - ["x"]= 338, + ["x"]= 26, ["y"]= 312, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/accuracyint.png"]= { - ["x"]= 364, + ["x"]= 52, ["y"]= 312, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/totemandbrandlife.png"]= { - ["x"]= 390, + ["x"]= 78, ["y"]= 312, ["w"]= 26, ["h"]= 26 @@ -9944,8 +10070,8 @@ return { } }, ["notableInactive"]= { - ["filename"]= "https://web.poecdn.com/image/passive-skill/skills-disabled-3.jpg?ac7492dd", - ["w"]= 962, + ["filename"]= "https://web.poecdn.com/image/passive-skill/skills-disabled-3.jpg?94caf4e2", + ["w"]= 999, ["h"]= 1459, ["coords"]= { ["Art/2DArt/SkillIcons/passives/2handeddamage.png"]= { @@ -10105,3871 +10231,3997 @@ return { ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/Assassin/DeadlyInfusion.png"]= { + ["x"]= 962, + ["y"]= 338, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Assassin/Elusive.png"]= { ["x"]= 0, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Assassin/Elusive.png"]= { + ["Art/2DArt/SkillIcons/passives/Assassin/NoxiousStrike.png"]= { ["x"]= 37, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Assassin/NoxiousStrike.png"]= { + ["Art/2DArt/SkillIcons/passives/Assassin/ToxicDelivery.png"]= { ["x"]= 74, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Assassin/ToxicDelivery.png"]= { + ["Art/2DArt/SkillIcons/passives/Assassin/UnstableInfusion.png"]= { ["x"]= 111, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Assassin/UnstableInfusion.png"]= { + ["Art/2DArt/SkillIcons/passives/AssassinAnointNotable.png"]= { ["x"]= 148, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/AssassinAnointNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/AtlasTrees/AulBloodlineNotable.png"]= { ["x"]= 185, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/AtlasTrees/AulBloodlineNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/AtlasTrees/BestiaryNotable4.png"]= { ["x"]= 222, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/AtlasTrees/BestiaryNotable4.png"]= { + ["Art/2DArt/SkillIcons/passives/AtlasTrees/BloodLineOlrothNotable.png"]= { ["x"]= 259, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/AtlasTrees/BloodLineOlrothNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/AtlasTrees/BoldUndertaking.png"]= { ["x"]= 296, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/AtlasTrees/BoldUndertaking.png"]= { + ["Art/2DArt/SkillIcons/passives/AtlasTrees/BreachNotable4.png"]= { ["x"]= 333, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/AtlasTrees/BreachNotable4.png"]= { + ["Art/2DArt/SkillIcons/passives/AtlasTrees/DeliriumNotable1.png"]= { ["x"]= 370, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/AtlasTrees/DeliriumNotable1.png"]= { + ["Art/2DArt/SkillIcons/passives/AtlasTrees/FarrulNotable1.png"]= { ["x"]= 407, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/AtlasTrees/FarrulNotable1.png"]= { + ["Art/2DArt/SkillIcons/passives/AtlasTrees/HarbingerNode1.png"]= { ["x"]= 444, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/AtlasTrees/HarbingerNode1.png"]= { + ["Art/2DArt/SkillIcons/passives/AtlasTrees/LyciaNotable1.png"]= { ["x"]= 481, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/AtlasTrees/LyciaNotable1.png"]= { + ["Art/2DArt/SkillIcons/passives/AtlasTrees/MorePrimalWisps.png"]= { ["x"]= 518, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/AtlasTrees/MorePrimalWisps.png"]= { + ["Art/2DArt/SkillIcons/passives/AtlasTrees/MoreVividWisps.png"]= { ["x"]= 555, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/AtlasTrees/MoreVividWisps.png"]= { + ["Art/2DArt/SkillIcons/passives/AtlasTrees/MoreWildWisps.png"]= { ["x"]= 592, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/AtlasTrees/MoreWildWisps.png"]= { + ["Art/2DArt/SkillIcons/passives/AtlasTrees/TempestNotable1.png"]= { ["x"]= 629, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/AtlasTrees/TempestNotable1.png"]= { + ["Art/2DArt/SkillIcons/passives/AtlasTrees/UltimatumNotable3.png"]= { ["x"]= 666, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/AtlasTrees/UltimatumNotable3.png"]= { + ["Art/2DArt/SkillIcons/passives/AtlasTrees/UltimatumNotable4.png"]= { ["x"]= 703, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/AtlasTrees/UltimatumNotable4.png"]= { + ["Art/2DArt/SkillIcons/passives/AttackBlindNotable.png"]= { ["x"]= 740, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/AttackBlindNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/AttackDamangeAndEvasionNotableIcon.png"]= { ["x"]= 777, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/AttackDamangeAndEvasionNotableIcon.png"]= { + ["Art/2DArt/SkillIcons/passives/AttackPoisonNotable.png"]= { ["x"]= 814, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/AttackPoisonNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/AuraEffectNotable.png"]= { ["x"]= 851, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/AuraEffectNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/AuraReservationNotable.png"]= { ["x"]= 888, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/AuraReservationNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/AvataroftheHunt2.png"]= { ["x"]= 925, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/AvataroftheHunt2.png"]= { + ["Art/2DArt/SkillIcons/passives/AvoidInterruptionFromCastingNotable.png"]= { + ["x"]= 962, + ["y"]= 375, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/AxeNotable1.png"]= { ["x"]= 0, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/AvoidInterruptionFromCastingNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/AxeNotable2.png"]= { ["x"]= 37, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/AxeNotable1.png"]= { + ["Art/2DArt/SkillIcons/passives/AxeandSwordDamage.png"]= { ["x"]= 74, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/AxeNotable2.png"]= { + ["Art/2DArt/SkillIcons/passives/AxesandAttackSpeed.png"]= { ["x"]= 111, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/AxeandSwordDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/BannerAreaNotable.png"]= { ["x"]= 148, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/AxesandAttackSpeed.png"]= { + ["Art/2DArt/SkillIcons/passives/BannerDurationNotable.png"]= { ["x"]= 185, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/BannerAreaNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/BannerEffectNotable.png"]= { ["x"]= 222, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/BannerDurationNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/BannerResourceAreaNotable.png"]= { ["x"]= 259, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/BannerEffectNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/BannersNotable.png"]= { ["x"]= 296, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/BannerResourceAreaNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/BarragingProjectilesNotable.png"]= { ["x"]= 333, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/BannersNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/BattleRouse.png"]= { ["x"]= 370, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/BarragingProjectilesNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Berserker/AspectOfCarnage.png"]= { ["x"]= 407, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/BattleRouse.png"]= { + ["Art/2DArt/SkillIcons/passives/Berserker/Blitz.png"]= { ["x"]= 444, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Berserker/AspectOfCarnage.png"]= { + ["Art/2DArt/SkillIcons/passives/Berserker/CloakedAgony.png"]= { ["x"]= 481, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Berserker/Blitz.png"]= { + ["Art/2DArt/SkillIcons/passives/Berserker/CombatFrenzy.png"]= { ["x"]= 518, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Berserker/CloakedAgony.png"]= { + ["Art/2DArt/SkillIcons/passives/Berserker/DefyPain.png"]= { ["x"]= 555, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Berserker/CombatFrenzy.png"]= { + ["Art/2DArt/SkillIcons/passives/Berserker/RiteOfRuin.png"]= { ["x"]= 592, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Berserker/DefyPain.png"]= { + ["Art/2DArt/SkillIcons/passives/Berserker/WarBringer.png"]= { ["x"]= 629, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Berserker/RiteOfRuin.png"]= { + ["Art/2DArt/SkillIcons/passives/BeserkerAnointNotable.png"]= { ["x"]= 666, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Berserker/WarBringer.png"]= { + ["Art/2DArt/SkillIcons/passives/BladeBarrierNotable.png"]= { ["x"]= 703, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/BeserkerAnointNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/BleedPoison.png"]= { ["x"]= 740, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/BladeBarrierNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/BleedPoisonMitigateNotable.png"]= { ["x"]= 777, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/BleedPoison.png"]= { + ["Art/2DArt/SkillIcons/passives/BleedingNotable1.png"]= { ["x"]= 814, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/BleedPoisonMitigateNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/BleedingNotable2.png"]= { ["x"]= 851, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/BleedingNotable1.png"]= { + ["Art/2DArt/SkillIcons/passives/BlockAttackDmgNotable.png"]= { ["x"]= 888, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/BleedingNotable2.png"]= { + ["Art/2DArt/SkillIcons/passives/BlockSpellDmgNotable.png"]= { ["x"]= 925, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/BlockAttackDmgNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Blood2.png"]= { + ["x"]= 962, + ["y"]= 412, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/BloodPact.png"]= { ["x"]= 0, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/BlockSpellDmgNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/BloodSiphon.png"]= { ["x"]= 37, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Blood2.png"]= { + ["Art/2DArt/SkillIcons/passives/BloodyBludgeon.png"]= { ["x"]= 74, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/BloodPact.png"]= { + ["Art/2DArt/SkillIcons/passives/Boomerang.png"]= { ["x"]= 111, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/BloodSiphon.png"]= { + ["Art/2DArt/SkillIcons/passives/BowDamage.png"]= { ["x"]= 148, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/BloodyBludgeon.png"]= { + ["Art/2DArt/SkillIcons/passives/Brand2.png"]= { ["x"]= 185, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Boomerang.png"]= { + ["Art/2DArt/SkillIcons/passives/Brand4.png"]= { ["x"]= 222, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/BowDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/BrandDmgNotable.png"]= { ["x"]= 259, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Brand2.png"]= { + ["Art/2DArt/SkillIcons/passives/BreathofFlames2.png"]= { ["x"]= 296, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Brand4.png"]= { + ["Art/2DArt/SkillIcons/passives/BreathofLightening2.png"]= { ["x"]= 333, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/BrandDmgNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/BreathofRime2.png"]= { ["x"]= 370, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/BreathofFlames2.png"]= { + ["Art/2DArt/SkillIcons/passives/ByTheBlade.png"]= { ["x"]= 407, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/BreathofLightening2.png"]= { + ["Art/2DArt/SkillIcons/passives/CelestialPunishment.png"]= { ["x"]= 444, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/BreathofRime2.png"]= { + ["Art/2DArt/SkillIcons/passives/ChainingProjectiles.png"]= { ["x"]= 481, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ByTheBlade.png"]= { + ["Art/2DArt/SkillIcons/passives/Champion.png"]= { ["x"]= 518, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/CelestialPunishment.png"]= { + ["Art/2DArt/SkillIcons/passives/Champion/FirstStrikeLastFall.png"]= { ["x"]= 555, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ChainingProjectiles.png"]= { + ["Art/2DArt/SkillIcons/passives/Champion/Fortitude.png"]= { ["x"]= 592, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Champion.png"]= { + ["Art/2DArt/SkillIcons/passives/Champion/ImpalePassiveNotable.png"]= { ["x"]= 629, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Champion/FirstStrikeLastFall.png"]= { + ["Art/2DArt/SkillIcons/passives/Champion/Inpirational.png"]= { ["x"]= 666, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Champion/Fortitude.png"]= { + ["Art/2DArt/SkillIcons/passives/Champion/Unstopable.png"]= { ["x"]= 703, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Champion/ImpalePassiveNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Champion/WorthyCauses.png"]= { ["x"]= 740, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Champion/Inpirational.png"]= { + ["Art/2DArt/SkillIcons/passives/Champion/WorthyFoe.png"]= { ["x"]= 777, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Champion/Unstopable.png"]= { + ["Art/2DArt/SkillIcons/passives/ChampionAnointNotable.png"]= { ["x"]= 814, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Champion/WorthyCauses.png"]= { + ["Art/2DArt/SkillIcons/passives/ChaosDamage2.png"]= { ["x"]= 851, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Champion/WorthyFoe.png"]= { + ["Art/2DArt/SkillIcons/passives/ChaosDamageOverTimeNotable.png"]= { ["x"]= 888, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ChampionAnointNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/ChaosDamageOverTimeNotable2.png"]= { ["x"]= 925, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ChaosDamage2.png"]= { + ["Art/2DArt/SkillIcons/passives/ChaosResistNotable.png"]= { + ["x"]= 962, + ["y"]= 449, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ChaoticPotential.png"]= { ["x"]= 0, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ChaosDamageOverTimeNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/CheiftainAnointNotable.png"]= { ["x"]= 37, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ChaosDamageOverTimeNotable2.png"]= { + ["Art/2DArt/SkillIcons/passives/Chieftain/ArohunguiMoonsPresenceWarcry.png"]= { ["x"]= 74, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ChaosResistNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Chieftain/HinekoraDeathsFury.png"]= { ["x"]= 111, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ChaoticPotential.png"]= { + ["Art/2DArt/SkillIcons/passives/Chieftain/NgamahuFlamesAdvance.png"]= { ["x"]= 148, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/CheiftainAnointNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Chieftain/RamakoSunsLight.png"]= { ["x"]= 185, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Chieftain/ArohunguiMoonsPresenceWarcry.png"]= { + ["Art/2DArt/SkillIcons/passives/Chieftain/TasalioCleansingWater.png"]= { ["x"]= 222, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Chieftain/HinekoraDeathsFury.png"]= { + ["Art/2DArt/SkillIcons/passives/Chieftain/TukomahaWarsHerald.png"]= { ["x"]= 259, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Chieftain/NgamahuFlamesAdvance.png"]= { + ["Art/2DArt/SkillIcons/passives/Chieftain/ValakoStormsEmbrace.png"]= { ["x"]= 296, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Chieftain/RamakoSunsLight.png"]= { + ["Art/2DArt/SkillIcons/passives/ChillThemedNotable.png"]= { ["x"]= 333, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Chieftain/TasalioCleansingWater.png"]= { + ["Art/2DArt/SkillIcons/passives/ClawNotable1.png"]= { ["x"]= 370, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Chieftain/TukomahaWarsHerald.png"]= { + ["Art/2DArt/SkillIcons/passives/ClawNotable2.png"]= { ["x"]= 407, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Chieftain/ValakoStormsEmbrace.png"]= { + ["Art/2DArt/SkillIcons/passives/ClawsOfTheMagpie.png"]= { ["x"]= 444, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ChillThemedNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/CleverThief.png"]= { ["x"]= 481, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ClawNotable1.png"]= { + ["Art/2DArt/SkillIcons/passives/ColdAndFireHybridNotable.png"]= { ["x"]= 518, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ClawNotable2.png"]= { + ["Art/2DArt/SkillIcons/passives/ColdDamageEnemyNotable.png"]= { ["x"]= 555, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ClawsOfTheMagpie.png"]= { + ["Art/2DArt/SkillIcons/passives/ColdDamageOverTimeNotable.png"]= { ["x"]= 592, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/CleverThief.png"]= { + ["Art/2DArt/SkillIcons/passives/ColdResistNotable.png"]= { ["x"]= 629, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ColdAndFireHybridNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/ColdWeaponDmg.png"]= { ["x"]= 666, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ColdDamageEnemyNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/ColdheartedCalculation2.png"]= { ["x"]= 703, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ColdDamageOverTimeNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/CombatFocusNotable.png"]= { ["x"]= 740, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ColdResistNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/CombatStamina.png"]= { ["x"]= 777, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ColdWeaponDmg.png"]= { + ["Art/2DArt/SkillIcons/passives/CommandofSteel.png"]= { ["x"]= 814, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ColdheartedCalculation2.png"]= { + ["Art/2DArt/SkillIcons/passives/Constitution.png"]= { ["x"]= 851, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/CombatFocusNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Coordination.png"]= { ["x"]= 888, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/CombatStamina.png"]= { + ["Art/2DArt/SkillIcons/passives/CorpsesNotable.png"]= { ["x"]= 925, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/CommandofSteel.png"]= { + ["Art/2DArt/SkillIcons/passives/Corruption.png"]= { + ["x"]= 962, + ["y"]= 486, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/CritStrikeBleedingNotable.png"]= { ["x"]= 0, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Constitution.png"]= { + ["Art/2DArt/SkillIcons/passives/CurseAreaOfEffectNotable.png"]= { ["x"]= 37, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Coordination.png"]= { + ["Art/2DArt/SkillIcons/passives/CurseEffectNotable.png"]= { ["x"]= 74, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/CorpsesNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/CurseNotable.png"]= { ["x"]= 111, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Corruption.png"]= { + ["Art/2DArt/SkillIcons/passives/CurseNotable2.png"]= { ["x"]= 148, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/CritStrikeBleedingNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/CursemitigationclusterNotable.png"]= { ["x"]= 185, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/CurseAreaOfEffectNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/DaggerNotable1.png"]= { ["x"]= 222, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/CurseEffectNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/DaggerandClawDamage.png"]= { ["x"]= 259, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/CurseNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/DamageOverTimeNotable.png"]= { ["x"]= 296, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/CurseNotable2.png"]= { + ["Art/2DArt/SkillIcons/passives/DamageofMinionsNotable.png"]= { ["x"]= 333, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/CursemitigationclusterNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/DarkestHour.png"]= { ["x"]= 370, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DaggerNotable1.png"]= { + ["Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeFrenzyChargeNotable.png"]= { ["x"]= 407, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DaggerandClawDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/DeadEye/FarShot.png"]= { ["x"]= 444, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DamageOverTimeNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/DeadEye/GatherWinds.png"]= { ["x"]= 481, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DamageofMinionsNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/DeadEye/Ricochet.png"]= { ["x"]= 518, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DarkestHour.png"]= { + ["Art/2DArt/SkillIcons/passives/DeadeyeAnointNotable.png"]= { ["x"]= 555, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeFrenzyChargeNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/DeepBreathsNotable.png"]= { ["x"]= 592, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DeadEye/FarShot.png"]= { + ["Art/2DArt/SkillIcons/passives/DiamondSkin2.png"]= { ["x"]= 629, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DeadEye/GatherWinds.png"]= { + ["Art/2DArt/SkillIcons/passives/DireTorment.png"]= { ["x"]= 666, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DeadEye/Ricochet.png"]= { + ["Art/2DArt/SkillIcons/passives/DivineFury.png"]= { ["x"]= 703, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DeadeyeAnointNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/DivineWrath.png"]= { ["x"]= 740, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DeepBreathsNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/DmgHeraldSkillsNotable.png"]= { ["x"]= 777, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DiamondSkin2.png"]= { + ["Art/2DArt/SkillIcons/passives/DmgWhenChannelSkillsNotable.png"]= { ["x"]= 814, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DireTorment.png"]= { + ["Art/2DArt/SkillIcons/passives/DodgeAtksNotable.png"]= { ["x"]= 851, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DivineFury.png"]= { + ["Art/2DArt/SkillIcons/passives/Dreamer.png"]= { ["x"]= 888, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DivineWrath.png"]= { + ["Art/2DArt/SkillIcons/passives/DruidicRite.png"]= { ["x"]= 925, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DmgHeraldSkillsNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/DualWieldNotable.png"]= { + ["x"]= 962, + ["y"]= 523, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/DualWieldingBlockNotable.png"]= { ["x"]= 0, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DmgWhenChannelSkillsNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/DualWieldingDamage.png"]= { ["x"]= 37, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DodgeAtksNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/DurationofMinionsNotable.png"]= { ["x"]= 74, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Dreamer.png"]= { + ["Art/2DArt/SkillIcons/passives/ElementalAilmentResistance.png"]= { ["x"]= 111, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DruidicRite.png"]= { + ["Art/2DArt/SkillIcons/passives/ElementalDamagewithAttacks2.png"]= { ["x"]= 148, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DualWieldNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/ElementalDominion2.png"]= { ["x"]= 185, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DualWieldingBlockNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/ElementalFocus.png"]= { ["x"]= 222, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DualWieldingDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/Elementalist/ChillSpecialisation.png"]= { ["x"]= 259, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DurationofMinionsNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Elementalist/ElemancerIcon.png"]= { ["x"]= 296, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ElementalAilmentResistance.png"]= { + ["Art/2DArt/SkillIcons/passives/Elementalist/IgniteSpecialisation.png"]= { ["x"]= 333, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ElementalDamagewithAttacks2.png"]= { + ["Art/2DArt/SkillIcons/passives/Elementalist/IridescentFlesh.png"]= { ["x"]= 370, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ElementalDominion2.png"]= { + ["Art/2DArt/SkillIcons/passives/Elementalist/LiegeOfThePrimordial.png"]= { ["x"]= 407, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ElementalFocus.png"]= { + ["Art/2DArt/SkillIcons/passives/Elementalist/PendulumOfDestruction.png"]= { ["x"]= 444, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Elementalist/ChillSpecialisation.png"]= { + ["Art/2DArt/SkillIcons/passives/Elementalist/PrimevalForce.png"]= { ["x"]= 481, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Elementalist/ElemancerIcon.png"]= { + ["Art/2DArt/SkillIcons/passives/Elementalist/ShockSpecialisation.png"]= { ["x"]= 518, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Elementalist/IgniteSpecialisation.png"]= { + ["Art/2DArt/SkillIcons/passives/ElementalistAnointNotable.png"]= { ["x"]= 555, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Elementalist/IridescentFlesh.png"]= { + ["Art/2DArt/SkillIcons/passives/EnduranceChargeNotable.png"]= { ["x"]= 592, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Elementalist/LiegeOfThePrimordial.png"]= { + ["Art/2DArt/SkillIcons/passives/EnergyShieldNotable.png"]= { ["x"]= 629, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Elementalist/PendulumOfDestruction.png"]= { + ["Art/2DArt/SkillIcons/passives/Entropy.png"]= { ["x"]= 666, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Elementalist/PrimevalForce.png"]= { + ["Art/2DArt/SkillIcons/passives/EscalationNotable.png"]= { ["x"]= 703, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Elementalist/ShockSpecialisation.png"]= { + ["Art/2DArt/SkillIcons/passives/EssenceSurge.png"]= { ["x"]= 740, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ElementalistAnointNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/EvasionAndBlindNotable.png"]= { ["x"]= 777, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/EnduranceChargeNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/EvasionAndPhasingNotable.png"]= { ["x"]= 814, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/EnergyShieldNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/EvasionNotable.png"]= { ["x"]= 851, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Entropy.png"]= { + ["Art/2DArt/SkillIcons/passives/ExceptionalPerformance.png"]= { ["x"]= 888, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/EscalationNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/ExplosiveRunes.png"]= { ["x"]= 925, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/EssenceSurge.png"]= { + ["Art/2DArt/SkillIcons/passives/EyesOfTheDeadly.png"]= { + ["x"]= 962, + ["y"]= 560, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/EyesOfThePowerful.png"]= { ["x"]= 0, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/EvasionAndBlindNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/EyesOfTheSavant.png"]= { ["x"]= 37, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/EvasionAndPhasingNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/FasterBleeding2.png"]= { ["x"]= 74, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/EvasionNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/FatalBlade.png"]= { ["x"]= 111, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ExceptionalPerformance.png"]= { + ["Art/2DArt/SkillIcons/passives/FireAilment.png"]= { ["x"]= 148, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ExplosiveRunes.png"]= { + ["Art/2DArt/SkillIcons/passives/FireDamageOverTimeNotable.png"]= { ["x"]= 185, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/EyesOfTheDeadly.png"]= { + ["Art/2DArt/SkillIcons/passives/FireResistNotable.png"]= { ["x"]= 222, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/EyesOfThePowerful.png"]= { + ["Art/2DArt/SkillIcons/passives/FlaskDuration.png"]= { ["x"]= 259, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/EyesOfTheSavant.png"]= { + ["Art/2DArt/SkillIcons/passives/FlaskNotableCritStrikeRecharge.png"]= { ["x"]= 296, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/FasterBleeding2.png"]= { + ["Art/2DArt/SkillIcons/passives/FlaskNotableFlasksLastLonger.png"]= { ["x"]= 333, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/FatalBlade.png"]= { + ["Art/2DArt/SkillIcons/passives/ForceOfNature.png"]= { ["x"]= 370, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/FireAilment.png"]= { + ["Art/2DArt/SkillIcons/passives/ForkingProjectilesNotable.png"]= { ["x"]= 407, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/FireDamageOverTimeNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/FortifyNotable1.png"]= { ["x"]= 444, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/FireResistNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/FortifyNotable2.png"]= { ["x"]= 481, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/FlaskDuration.png"]= { + ["Art/2DArt/SkillIcons/passives/FrenzyChargeNotable.png"]= { ["x"]= 518, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/FlaskNotableCritStrikeRecharge.png"]= { + ["Art/2DArt/SkillIcons/passives/GenericBlockNotable1.png"]= { ["x"]= 555, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/FlaskNotableFlasksLastLonger.png"]= { + ["Art/2DArt/SkillIcons/passives/GenericBlockNotable2.png"]= { ["x"]= 592, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ForceOfNature.png"]= { + ["Art/2DArt/SkillIcons/passives/GenericSpellBlockNotable.png"]= { ["x"]= 629, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ForkingProjectilesNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Gladiator/GLADBloodAndSand.png"]= { ["x"]= 666, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/FortifyNotable1.png"]= { + ["Art/2DArt/SkillIcons/passives/Gladiator/GLADBloodInEyes.png"]= { ["x"]= 703, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/FortifyNotable2.png"]= { + ["Art/2DArt/SkillIcons/passives/Gladiator/GLADPainForged.png"]= { ["x"]= 740, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/FrenzyChargeNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Gladiator/GLADVersitileCombatant.png"]= { ["x"]= 777, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/GenericBlockNotable1.png"]= { + ["Art/2DArt/SkillIcons/passives/Gladiator/GLADViolence.png"]= { ["x"]= 814, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/GenericBlockNotable2.png"]= { + ["Art/2DArt/SkillIcons/passives/Gladiator/GLADViolentRetaliation.png"]= { ["x"]= 851, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/GenericSpellBlockNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Gladiator/GladiatorDualWiledSwordAxeNotable.png"]= { ["x"]= 888, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Gladiator/GLADBloodAndSand.png"]= { + ["Art/2DArt/SkillIcons/passives/GladiatorAnointNotable.png"]= { ["x"]= 925, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Gladiator/GLADBloodInEyes.png"]= { + ["Art/2DArt/SkillIcons/passives/GolemsNotable.png"]= { + ["x"]= 962, + ["y"]= 597, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/GreenProjectileAttackNotable.png"]= { ["x"]= 0, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Gladiator/GLADPainForged.png"]= { + ["Art/2DArt/SkillIcons/passives/GrowthandDecay.png"]= { ["x"]= 37, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Gladiator/GLADVersitileCombatant.png"]= { + ["Art/2DArt/SkillIcons/passives/Guardian/GuardianHallowingFlameNotable.png"]= { ["x"]= 74, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Gladiator/GLADViolence.png"]= { + ["Art/2DArt/SkillIcons/passives/Guardian/HarmonyOfPurpose.png"]= { ["x"]= 111, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Gladiator/GLADViolentRetaliation.png"]= { + ["Art/2DArt/SkillIcons/passives/Guardian/Radient Crusade.png"]= { ["x"]= 148, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Gladiator/GladiatorDualWiledSwordAxeNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Guardian/RadientFaith.png"]= { ["x"]= 185, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/GladiatorAnointNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Guardian/ShieldMastery.png"]= { ["x"]= 222, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/GolemsNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Guardian/TimeOfNeed.png"]= { ["x"]= 259, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/GreenProjectileAttackNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Guardian/Unwavering Crusade.png"]= { ["x"]= 296, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/GrowthandDecay.png"]= { + ["Art/2DArt/SkillIcons/passives/Guardian/UnwaveringFaith.png"]= { ["x"]= 333, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Guardian/GuardianHallowingFlameNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/GuardianAnointNotable.png"]= { ["x"]= 370, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Guardian/HarmonyOfPurpose.png"]= { + ["Art/2DArt/SkillIcons/passives/Harrier.png"]= { ["x"]= 407, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Guardian/Radient Crusade.png"]= { + ["Art/2DArt/SkillIcons/passives/HeartandSoul.png"]= { ["x"]= 444, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Guardian/RadientFaith.png"]= { + ["Art/2DArt/SkillIcons/passives/HeartofChaos.png"]= { ["x"]= 481, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Guardian/ShieldMastery.png"]= { + ["Art/2DArt/SkillIcons/passives/HeartoftheOak.png"]= { ["x"]= 518, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Guardian/TimeOfNeed.png"]= { + ["Art/2DArt/SkillIcons/passives/Hearty.png"]= { ["x"]= 555, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Guardian/Unwavering Crusade.png"]= { + ["Art/2DArt/SkillIcons/passives/HeirophantAnointNotable.png"]= { ["x"]= 592, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Guardian/UnwaveringFaith.png"]= { + ["Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.png"]= { ["x"]= 629, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/GuardianAnointNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/HeraldDamageNotable.png"]= { ["x"]= 666, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Harrier.png"]= { + ["Art/2DArt/SkillIcons/passives/HeraldReservation.png"]= { ["x"]= 703, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/HeartandSoul.png"]= { + ["Art/2DArt/SkillIcons/passives/Hierophant/AncestralZeal.png"]= { ["x"]= 740, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/HeartofChaos.png"]= { + ["Art/2DArt/SkillIcons/passives/Hierophant/ArcaneSurge.png"]= { ["x"]= 777, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/HeartoftheOak.png"]= { + ["Art/2DArt/SkillIcons/passives/Hierophant/DiscipleOfRuin.png"]= { ["x"]= 814, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Hearty.png"]= { + ["Art/2DArt/SkillIcons/passives/Hierophant/ItemAugment.png"]= { ["x"]= 851, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/HeirophantAnointNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Hierophant/MindOverBeing.png"]= { ["x"]= 888, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.png"]= { + ["Art/2DArt/SkillIcons/passives/Hierophant/MindOverBody.png"]= { ["x"]= 925, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/HeraldDamageNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Hierophant/SignOfPurpose.png"]= { + ["x"]= 962, + ["y"]= 634, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Hierophant/SpiritualEmpowerment.png"]= { ["x"]= 0, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/HeraldReservation.png"]= { + ["Art/2DArt/SkillIcons/passives/HiredKiller2.png"]= { ["x"]= 37, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Hierophant/AncestralZeal.png"]= { + ["Art/2DArt/SkillIcons/passives/HoldingShieldDamage.png"]= { ["x"]= 74, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Hierophant/ArcaneSurge.png"]= { + ["Art/2DArt/SkillIcons/passives/Hunter.png"]= { ["x"]= 111, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Hierophant/DiscipleOfRuin.png"]= { + ["Art/2DArt/SkillIcons/passives/IgniteAshNotable.png"]= { ["x"]= 148, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Hierophant/ItemAugment.png"]= { + ["Art/2DArt/SkillIcons/passives/IgniteAttackNotable.png"]= { ["x"]= 185, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Hierophant/MindOverBeing.png"]= { + ["Art/2DArt/SkillIcons/passives/IgniteBleedNotable.png"]= { ["x"]= 222, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Hierophant/MindOverBody.png"]= { + ["Art/2DArt/SkillIcons/passives/IgniteStunNotable.png"]= { ["x"]= 259, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Hierophant/SignOfPurpose.png"]= { + ["Art/2DArt/SkillIcons/passives/IgnorePain.png"]= { ["x"]= 296, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Hierophant/SpiritualEmpowerment.png"]= { + ["Art/2DArt/SkillIcons/passives/Impale1HandNotable.png"]= { ["x"]= 333, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/HiredKiller2.png"]= { + ["Art/2DArt/SkillIcons/passives/ImpaleEffectNotable.png"]= { ["x"]= 370, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/HoldingShieldDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/ImpaleNotable1.png"]= { ["x"]= 407, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Hunter.png"]= { + ["Art/2DArt/SkillIcons/passives/ImpaleNotable2.png"]= { ["x"]= 444, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/IgniteAshNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreaseCritChanceNotable.png"]= { ["x"]= 481, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/IgniteAttackNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreaseMinionLifeNotable.png"]= { ["x"]= 518, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/IgniteBleedNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreasedAttackDamageNotable.png"]= { ["x"]= 555, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/IgniteStunNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreasedChaosDamage.png"]= { ["x"]= 592, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/IgnorePain.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreasedColdDamage.png"]= { ["x"]= 629, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Impale1HandNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreasedElementalDamage.png"]= { ["x"]= 666, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ImpaleEffectNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreasedFireDamage.png"]= { ["x"]= 703, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ImpaleNotable1.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreasedLightningDamage.png"]= { ["x"]= 740, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ImpaleNotable2.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreasedManaCostNotable.png"]= { ["x"]= 777, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/IncreaseCritChanceNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreasedMaximumLifeNotable.png"]= { ["x"]= 814, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/IncreaseMinionLifeNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreasedMinionDamageNotable.png"]= { ["x"]= 851, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/IncreasedAttackDamageNotable.png"]= { - ["x"]= 888, + ["Art/2DArt/SkillIcons/passives/IncreasedNonDamageAilmentNotable.png"]= { + ["x"]= 888, + ["y"]= 671, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.png"]= { + ["x"]= 925, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/IncreasedChaosDamage.png"]= { - ["x"]= 925, + ["Art/2DArt/SkillIcons/passives/IncreasedSpellDamageNode.png"]= { + ["x"]= 962, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/IncreasedColdDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreasedSpellDamageNotable.png"]= { ["x"]= 0, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/IncreasedElementalDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreasedWarcryNotable.png"]= { ["x"]= 37, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/IncreasedFireDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/InfusedFlesh.png"]= { ["x"]= 74, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/IncreasedLightningDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/InquisitorAnointNotable.png"]= { ["x"]= 111, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/IncreasedManaCostNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Inquistitor/ElementalDomination.png"]= { ["x"]= 148, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/IncreasedMaximumLifeNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Inquistitor/ElementalForce.png"]= { ["x"]= 185, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/IncreasedMinionDamageNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Inquistitor/ElementalMastery.png"]= { ["x"]= 222, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/IncreasedNonDamageAilmentNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Inquistitor/GloryOfTheSavant.png"]= { ["x"]= 259, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/Inquistitor/InstrumentsOfVirtue.png"]= { ["x"]= 296, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/IncreasedSpellDamageNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Inquistitor/InstrumentsofZeal.png"]= { ["x"]= 333, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/IncreasedSpellDamageNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Inquistitor/Sanctify.png"]= { ["x"]= 370, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/IncreasedWarcryNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Inspiration.png"]= { ["x"]= 407, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/InfusedFlesh.png"]= { + ["Art/2DArt/SkillIcons/passives/IntensifyNotable.png"]= { ["x"]= 444, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/InquisitorAnointNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Juggernaut/JuggernautArmourNotable.png"]= { ["x"]= 481, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Inquistitor/ElementalDomination.png"]= { + ["Art/2DArt/SkillIcons/passives/Juggernaut/Unbreakable.png"]= { ["x"]= 518, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Inquistitor/ElementalForce.png"]= { + ["Art/2DArt/SkillIcons/passives/Juggernaut/Undeniable.png"]= { ["x"]= 555, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Inquistitor/ElementalMastery.png"]= { + ["Art/2DArt/SkillIcons/passives/Juggernaut/Unflinching.png"]= { ["x"]= 592, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Inquistitor/GloryOfTheSavant.png"]= { + ["Art/2DArt/SkillIcons/passives/Juggernaut/Unrelenting.png"]= { ["x"]= 629, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Inquistitor/InstrumentsOfVirtue.png"]= { + ["Art/2DArt/SkillIcons/passives/Juggernaut/Unstoppable.png"]= { ["x"]= 666, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Inquistitor/InstrumentsofZeal.png"]= { + ["Art/2DArt/SkillIcons/passives/Juggernaut/Unyielding.png"]= { ["x"]= 703, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Inquistitor/Sanctify.png"]= { + ["Art/2DArt/SkillIcons/passives/JuggernautAnointNotable.png"]= { ["x"]= 740, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Inspiration.png"]= { + ["Art/2DArt/SkillIcons/passives/KeystoneArmourMaster.png"]= { ["x"]= 777, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/IntensifyNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/KeystoneWhispersOfDoom.png"]= { ["x"]= 814, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Juggernaut/JuggernautArmourNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/LifeArmourAndEvasion.png"]= { ["x"]= 851, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Juggernaut/Unbreakable.png"]= { + ["Art/2DArt/SkillIcons/passives/LifeFlasks.png"]= { ["x"]= 888, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Juggernaut/Undeniable.png"]= { + ["Art/2DArt/SkillIcons/passives/LifeGainOnHitNotable.png"]= { ["x"]= 925, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Juggernaut/Unflinching.png"]= { + ["Art/2DArt/SkillIcons/passives/LifeManaFlasksrecovery.png"]= { + ["x"]= 962, + ["y"]= 708, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/LifeRecoupNotable.png"]= { ["x"]= 0, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Juggernaut/Unrelenting.png"]= { + ["Art/2DArt/SkillIcons/passives/LifeRegenerationGainRegenNotable.png"]= { ["x"]= 37, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Juggernaut/Unstoppable.png"]= { + ["Art/2DArt/SkillIcons/passives/LifeRegenerationLowlifeBonusNotable.png"]= { ["x"]= 74, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Juggernaut/Unyielding.png"]= { + ["Art/2DArt/SkillIcons/passives/LifeandCursesN.png"]= { ["x"]= 111, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/JuggernautAnointNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/LifeandManaFlasks.png"]= { ["x"]= 148, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/KeystoneWhispersOfDoom.png"]= { + ["Art/2DArt/SkillIcons/passives/LifeandResistancesofMinions.png"]= { ["x"]= 185, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/LifeArmourAndEvasion.png"]= { + ["Art/2DArt/SkillIcons/passives/LightOfDivinity.png"]= { ["x"]= 222, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/LifeFlasks.png"]= { + ["Art/2DArt/SkillIcons/passives/LightningResistNotable.png"]= { ["x"]= 259, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/LifeGainOnHitNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/LinkNotable3.png"]= { ["x"]= 296, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/LifeManaFlasksrecovery.png"]= { + ["Art/2DArt/SkillIcons/passives/LinkNotable4.png"]= { ["x"]= 333, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/LifeRecoupNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/LustforCarnage.png"]= { ["x"]= 370, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/LifeRegenerationGainRegenNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/MaceNotable1.png"]= { ["x"]= 407, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/LifeRegenerationLowlifeBonusNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/MaceNotable2.png"]= { ["x"]= 444, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/LifeandCursesN.png"]= { + ["Art/2DArt/SkillIcons/passives/MaceandStaffDamage.png"]= { ["x"]= 481, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/LifeandManaFlasks.png"]= { + ["Art/2DArt/SkillIcons/passives/ManaDamageKeystone.png"]= { ["x"]= 518, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/LifeandResistancesofMinions.png"]= { + ["Art/2DArt/SkillIcons/passives/ManaFlasksOften.png"]= { ["x"]= 555, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/LightOfDivinity.png"]= { + ["Art/2DArt/SkillIcons/passives/ManaGuardNotable.png"]= { ["x"]= 592, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/LightningResistNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/ManaNotable.png"]= { ["x"]= 629, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/LinkNotable3.png"]= { + ["Art/2DArt/SkillIcons/passives/ManaandArcaneSurge.png"]= { ["x"]= 666, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/LinkNotable4.png"]= { + ["Art/2DArt/SkillIcons/passives/ManaandSpellBlock.png"]= { ["x"]= 703, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/LustforCarnage.png"]= { + ["Art/2DArt/SkillIcons/passives/ManaandSpellDamage.png"]= { ["x"]= 740, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MaceNotable1.png"]= { + ["Art/2DArt/SkillIcons/passives/Mark.png"]= { ["x"]= 777, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MaceNotable2.png"]= { + ["Art/2DArt/SkillIcons/passives/MarkNotable1.png"]= { ["x"]= 814, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MaceandStaffDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/MarkNotable2.png"]= { ["x"]= 851, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ManaDamageKeystone.png"]= { + ["Art/2DArt/SkillIcons/passives/MarkNotableIncreasedEffect.png"]= { ["x"]= 888, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ManaFlasksOften.png"]= { + ["Art/2DArt/SkillIcons/passives/MarkNotableMarkSpellRecently.png"]= { ["x"]= 925, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ManaGuardNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/MartialExperience.png"]= { + ["x"]= 962, + ["y"]= 745, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/MasterofForce.png"]= { ["x"]= 0, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ManaNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/MaxElementalResistNotable.png"]= { ["x"]= 37, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ManaandArcaneSurge.png"]= { + ["Art/2DArt/SkillIcons/passives/MaxManaNotable.png"]= { ["x"]= 74, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ManaandSpellBlock.png"]= { + ["Art/2DArt/SkillIcons/passives/MaximumElementalResistances2.png"]= { ["x"]= 111, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ManaandSpellDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/MeasuredFuryNotable.png"]= { ["x"]= 148, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Mark.png"]= { + ["Art/2DArt/SkillIcons/passives/MeleeAoENode.png"]= { ["x"]= 185, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MarkNotable1.png"]= { + ["Art/2DArt/SkillIcons/passives/MeleeAoENotable.png"]= { ["x"]= 222, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MarkNotable2.png"]= { + ["Art/2DArt/SkillIcons/passives/MeleeCriticalStrikesNotable.png"]= { ["x"]= 259, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MarkNotableIncreasedEffect.png"]= { + ["Art/2DArt/SkillIcons/passives/MeleeFireNotable.png"]= { ["x"]= 296, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MarkNotableMarkSpellRecently.png"]= { + ["Art/2DArt/SkillIcons/passives/MeleeRange2.png"]= { ["x"]= 333, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MartialExperience.png"]= { + ["Art/2DArt/SkillIcons/passives/MeleeUtility.png"]= { ["x"]= 370, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MasterofForce.png"]= { + ["Art/2DArt/SkillIcons/passives/Meleerange.png"]= { ["x"]= 407, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MaxElementalResistNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/MentalRapidity.png"]= { ["x"]= 444, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MaxManaNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/MindPact.png"]= { ["x"]= 481, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MaximumElementalResistances2.png"]= { + ["Art/2DArt/SkillIcons/passives/MineAreaOfEffectNotable.png"]= { ["x"]= 518, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MeasuredFuryNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/MineCriticalStrikesNotable.png"]= { ["x"]= 555, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MeleeAoENode.png"]= { + ["Art/2DArt/SkillIcons/passives/MineManaReservationNotable.png"]= { ["x"]= 592, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MeleeAoENotable.png"]= { + ["Art/2DArt/SkillIcons/passives/MineTrap.png"]= { ["x"]= 629, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MeleeCriticalStrikesNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/MinionDmgHeraldSkillsNotable.png"]= { ["x"]= 666, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MeleeFireNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Mirage.png"]= { ["x"]= 703, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MeleeRange2.png"]= { + ["Art/2DArt/SkillIcons/passives/NaturalAuthorityNotable.png"]= { ["x"]= 740, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MeleeUtility.png"]= { + ["Art/2DArt/SkillIcons/passives/Necromancer/CommandingTheDarkness.png"]= { ["x"]= 777, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Meleerange.png"]= { + ["Art/2DArt/SkillIcons/passives/Necromancer/CorpseConsumptionNotable2.png"]= { ["x"]= 814, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MentalRapidity.png"]= { + ["Art/2DArt/SkillIcons/passives/Necromancer/DefensiveMinionNotable.png"]= { ["x"]= 851, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MindPact.png"]= { + ["Art/2DArt/SkillIcons/passives/Necromancer/EssenceGlutton.png"]= { ["x"]= 888, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MineAreaOfEffectNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Necromancer/GenericMinionNotable.png"]= { ["x"]= 925, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MineCriticalStrikesNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Necromancer/GiftsOfTheDamned.png"]= { + ["x"]= 962, + ["y"]= 782, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Necromancer/OffensiveMinionNotable.png"]= { ["x"]= 0, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MineManaReservationNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Necromancer/PlagueBringer.png"]= { ["x"]= 37, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MineTrap.png"]= { + ["Art/2DArt/SkillIcons/passives/NecromancerAnointNotable.png"]= { ["x"]= 74, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MinionDmgHeraldSkillsNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Occultist/FatefulEchoes.png"]= { ["x"]= 111, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Mirage.png"]= { + ["Art/2DArt/SkillIcons/passives/Occultist/FrigidWake.png"]= { ["x"]= 148, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/NaturalAuthorityNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Occultist/LotusExtract.png"]= { ["x"]= 185, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Necromancer/CommandingTheDarkness.png"]= { + ["Art/2DArt/SkillIcons/passives/Occultist/SoulCatalyst.png"]= { ["x"]= 222, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Necromancer/CorpseConsumptionNotable2.png"]= { + ["Art/2DArt/SkillIcons/passives/Occultist/VoidBeacon.png"]= { ["x"]= 259, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Necromancer/DefensiveMinionNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Occultist/VowOfDamnation.png"]= { ["x"]= 296, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Necromancer/EssenceGlutton.png"]= { + ["Art/2DArt/SkillIcons/passives/Occultist/WitheringPresence.png"]= { ["x"]= 333, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Necromancer/GenericMinionNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/OccultistAnointNotable.png"]= { ["x"]= 370, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Necromancer/GiftsOfTheDamned.png"]= { + ["Art/2DArt/SkillIcons/passives/OneHandedPhysicalAndLeechNotable.png"]= { ["x"]= 407, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Necromancer/OffensiveMinionNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/PathFinder/AlchemistGift.png"]= { ["x"]= 444, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Necromancer/PlagueBringer.png"]= { + ["Art/2DArt/SkillIcons/passives/PathFinder/MasterAlchemist.png"]= { ["x"]= 481, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/NecromancerAnointNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/PathFinder/MasterHerbalist.png"]= { ["x"]= 518, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Occultist/FatefulEchoes.png"]= { + ["Art/2DArt/SkillIcons/passives/PathFinder/MasterSurgeon.png"]= { ["x"]= 555, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Occultist/FrigidWake.png"]= { + ["Art/2DArt/SkillIcons/passives/PathFinder/Master Toxicist.png"]= { ["x"]= 592, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Occultist/LotusExtract.png"]= { + ["Art/2DArt/SkillIcons/passives/PathFinder/NaturesAdrenaline.png"]= { ["x"]= 629, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Occultist/SoulCatalyst.png"]= { + ["Art/2DArt/SkillIcons/passives/PathFinder/VeteranBowyer.png"]= { ["x"]= 666, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Occultist/VoidBeacon.png"]= { + ["Art/2DArt/SkillIcons/passives/PathfinderAnointNotable.png"]= { ["x"]= 703, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Occultist/VowOfDamnation.png"]= { + ["Art/2DArt/SkillIcons/passives/PhysicalDamageNotable.png"]= { ["x"]= 740, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Occultist/WitheringPresence.png"]= { + ["Art/2DArt/SkillIcons/passives/PhysicalDamageNotableGreen.png"]= { ["x"]= 777, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/OccultistAnointNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeHybrid.png"]= { ["x"]= 814, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/OneHandedPhysicalAndLeechNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNotable.png"]= { ["x"]= 851, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/PathFinder/AlchemistGift.png"]= { + ["Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimenotable1.png"]= { ["x"]= 888, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/PathFinder/MasterAlchemist.png"]= { + ["Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimenotable2.png"]= { ["x"]= 925, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/PathFinder/MasterHerbalist.png"]= { + ["Art/2DArt/SkillIcons/passives/Poison.png"]= { + ["x"]= 962, + ["y"]= 819, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/PoisonSpellsNotable.png"]= { ["x"]= 0, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/PathFinder/MasterSurgeon.png"]= { + ["Art/2DArt/SkillIcons/passives/PowerChargeNotable.png"]= { ["x"]= 37, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/PathFinder/Master Toxicist.png"]= { + ["Art/2DArt/SkillIcons/passives/Primalist/PrimalistCorpseLoot.png"]= { ["x"]= 74, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/PathFinder/NaturesAdrenaline.png"]= { + ["Art/2DArt/SkillIcons/passives/Primalist/PrimalistInventoryExpansion.png"]= { ["x"]= 111, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/PathFinder/VeteranBowyer.png"]= { + ["Art/2DArt/SkillIcons/passives/ProfaneChemistry.png"]= { ["x"]= 148, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/PathfinderAnointNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/ProjectileDmgNotable.png"]= { ["x"]= 185, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/PhysicalDamageNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/ProjectilesNotable.png"]= { ["x"]= 222, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/PhysicalDamageNotableGreen.png"]= { + ["Art/2DArt/SkillIcons/passives/ProtectiveWinds.png"]= { ["x"]= 259, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeHybrid.png"]= { + ["Art/2DArt/SkillIcons/passives/QuickRecovery.png"]= { ["x"]= 296, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/RageNotable.png"]= { ["x"]= 333, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimenotable1.png"]= { + ["Art/2DArt/SkillIcons/passives/RageNotable1.png"]= { ["x"]= 370, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimenotable2.png"]= { + ["Art/2DArt/SkillIcons/passives/RageNotable2.png"]= { ["x"]= 407, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Poison.png"]= { + ["Art/2DArt/SkillIcons/passives/RageNotable3.png"]= { ["x"]= 444, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/PoisonSpellsNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/RangedTotemCriticalStrikes.png"]= { ["x"]= 481, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/PowerChargeNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/RangedTotemOffensive.png"]= { ["x"]= 518, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Primalist/PrimalistCorpseLoot.png"]= { + ["Art/2DArt/SkillIcons/passives/RedHolyAttackNotable.png"]= { ["x"]= 555, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Primalist/PrimalistInventoryExpansion.png"]= { + ["Art/2DArt/SkillIcons/passives/Redemption.png"]= { ["x"]= 592, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ProfaneChemistry.png"]= { + ["Art/2DArt/SkillIcons/passives/ReducedManaNotable.png"]= { ["x"]= 629, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ProjectileDmgNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/ReducedProjectileSpeedNotable.png"]= { ["x"]= 666, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ProjectilesNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNotable.png"]= { ["x"]= 703, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ProtectiveWinds.png"]= { + ["Art/2DArt/SkillIcons/passives/Resourcefulness.png"]= { ["x"]= 740, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/QuickRecovery.png"]= { + ["Art/2DArt/SkillIcons/passives/Retaliation.png"]= { ["x"]= 777, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/RageNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/RetaliationAoE.png"]= { ["x"]= 814, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/RageNotable1.png"]= { + ["Art/2DArt/SkillIcons/passives/RetaliationAttackBlock.png"]= { ["x"]= 851, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/RageNotable2.png"]= { + ["Art/2DArt/SkillIcons/passives/RetaliationDurationCooldown.png"]= { ["x"]= 888, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/RageNotable3.png"]= { + ["Art/2DArt/SkillIcons/passives/RetaliationSkillDamage.png"]= { ["x"]= 925, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/RangedTotemCriticalStrikes.png"]= { + ["Art/2DArt/SkillIcons/passives/RetaliationSpellBlock.png"]= { + ["x"]= 962, + ["y"]= 856, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/RetaliationStun.png"]= { ["x"]= 0, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/RangedTotemOffensive.png"]= { + ["Art/2DArt/SkillIcons/passives/Retribution.png"]= { ["x"]= 37, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/RedHolyAttackNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Revelry.png"]= { ["x"]= 74, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Redemption.png"]= { + ["Art/2DArt/SkillIcons/passives/RighteousArmy.png"]= { ["x"]= 111, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ReducedManaNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Righteous Decree.png"]= { ["x"]= 148, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ReducedProjectileSpeedNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/RitualBloodLineNotable.png"]= { ["x"]= 185, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Robust.png"]= { ["x"]= 222, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Resourcefulness.png"]= { + ["Art/2DArt/SkillIcons/passives/Saboteur/BlindedAssult.png"]= { ["x"]= 259, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Retaliation.png"]= { + ["Art/2DArt/SkillIcons/passives/Saboteur/BombSpecialist.png"]= { ["x"]= 296, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/RetaliationAoE.png"]= { + ["Art/2DArt/SkillIcons/passives/Saboteur/ChainReaction.png"]= { ["x"]= 333, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/RetaliationAttackBlock.png"]= { + ["Art/2DArt/SkillIcons/passives/Saboteur/DemolitionSpecialist.png"]= { ["x"]= 370, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/RetaliationDurationCooldown.png"]= { + ["Art/2DArt/SkillIcons/passives/Saboteur/ExplosivesExpert.png"]= { ["x"]= 407, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/RetaliationSkillDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/Saboteur/LikeClockworkNotable.png"]= { ["x"]= 444, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/RetaliationSpellBlock.png"]= { + ["Art/2DArt/SkillIcons/passives/Saboteur/PerfectCrime.png"]= { ["x"]= 481, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/RetaliationStun.png"]= { + ["Art/2DArt/SkillIcons/passives/Saboteur/ShadowsDarknessBlind.png"]= { ["x"]= 518, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Retribution.png"]= { + ["Art/2DArt/SkillIcons/passives/Saboteur/ShrapnelSpecialist.png"]= { ["x"]= 555, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Revelry.png"]= { + ["Art/2DArt/SkillIcons/passives/SaboteurAnointNotable.png"]= { ["x"]= 592, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/RighteousArmy.png"]= { + ["Art/2DArt/SkillIcons/passives/Sanctuary.png"]= { ["x"]= 629, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Righteous Decree.png"]= { + ["Art/2DArt/SkillIcons/passives/SareshBloodlineNotable1.png"]= { ["x"]= 666, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/RitualBloodLineNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/SareshBloodlineNotable3.png"]= { ["x"]= 703, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Robust.png"]= { + ["Art/2DArt/SkillIcons/passives/SareshBloodlineNoteble2.png"]= { ["x"]= 740, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Saboteur/BlindedAssult.png"]= { + ["Art/2DArt/SkillIcons/passives/SavantPath.png"]= { ["x"]= 777, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Saboteur/BombSpecialist.png"]= { + ["Art/2DArt/SkillIcons/passives/SearingHeat.png"]= { ["x"]= 814, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Saboteur/ChainReaction.png"]= { + ["Art/2DArt/SkillIcons/passives/Sentinel.png"]= { ["x"]= 851, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Saboteur/DemolitionSpecialist.png"]= { + ["Art/2DArt/SkillIcons/passives/Shaper.png"]= { ["x"]= 888, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Saboteur/ExplosivesExpert.png"]= { + ["Art/2DArt/SkillIcons/passives/ShieldAttackDamage.png"]= { ["x"]= 925, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Saboteur/LikeClockworkNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/ShieldNotable.png"]= { + ["x"]= 962, + ["y"]= 893, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ShrugOff.png"]= { ["x"]= 0, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Saboteur/PerfectCrime.png"]= { + ["Art/2DArt/SkillIcons/passives/SkitteringRunes.png"]= { ["x"]= 37, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Saboteur/ShadowsDarknessBlind.png"]= { + ["Art/2DArt/SkillIcons/passives/Slayer/BaneOfLegends.png"]= { ["x"]= 74, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Saboteur/ShrapnelSpecialist.png"]= { + ["Art/2DArt/SkillIcons/passives/Slayer/BrutalFervor.png"]= { ["x"]= 111, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/SaboteurAnointNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Slayer/Charges.png"]= { ["x"]= 148, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Sanctuary.png"]= { + ["Art/2DArt/SkillIcons/passives/Slayer/CriticalAttacks.png"]= { ["x"]= 185, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/SareshBloodlineNotable1.png"]= { + ["Art/2DArt/SkillIcons/passives/Slayer/EndlessHunger.png"]= { ["x"]= 222, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/SareshBloodlineNotable3.png"]= { + ["Art/2DArt/SkillIcons/passives/Slayer/Headman.png"]= { ["x"]= 259, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/SareshBloodlineNoteble2.png"]= { + ["Art/2DArt/SkillIcons/passives/Slayer/Impact.png"]= { ["x"]= 296, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/SavantPath.png"]= { + ["Art/2DArt/SkillIcons/passives/SlayerAnointNotable.png"]= { ["x"]= 333, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/SearingHeat.png"]= { + ["Art/2DArt/SkillIcons/passives/SoulPact.png"]= { ["x"]= 370, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Sentinel.png"]= { + ["Art/2DArt/SkillIcons/passives/SoulSiphoning.png"]= { ["x"]= 407, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Shaper.png"]= { + ["Art/2DArt/SkillIcons/passives/SpellSuppressionLifeFlasksN.png"]= { ["x"]= 444, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ShieldAttackDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/SpellSupressionAndEnergyShieldNotable.png"]= { ["x"]= 481, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ShieldNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/SpellSupressionNotable1.png"]= { ["x"]= 518, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ShrugOff.png"]= { + ["Art/2DArt/SkillIcons/passives/SpellSupressionNotable2.png"]= { ["x"]= 555, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/SkitteringRunes.png"]= { + ["Art/2DArt/SkillIcons/passives/SpikedBulwark.png"]= { ["x"]= 592, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Slayer/BaneOfLegends.png"]= { + ["Art/2DArt/SkillIcons/passives/SpiritualAid.png"]= { ["x"]= 629, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Slayer/BrutalFervor.png"]= { + ["Art/2DArt/SkillIcons/passives/SpiritualCommand.png"]= { ["x"]= 666, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Slayer/Charges.png"]= { + ["Art/2DArt/SkillIcons/passives/StaffCrit.png"]= { ["x"]= 703, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Slayer/CriticalAttacks.png"]= { + ["Art/2DArt/SkillIcons/passives/StaffNotable.png"]= { ["x"]= 740, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Slayer/EndlessHunger.png"]= { + ["Art/2DArt/SkillIcons/passives/StaffNotable2.png"]= { ["x"]= 777, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Slayer/Headman.png"]= { + ["Art/2DArt/SkillIcons/passives/StaffNotable3.png"]= { ["x"]= 814, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Slayer/Impact.png"]= { + ["Art/2DArt/SkillIcons/passives/StanceNotableReservation.png"]= { ["x"]= 851, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/SlayerAnointNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/StanceNotableSwitching.png"]= { ["x"]= 888, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/SoulPact.png"]= { + ["Art/2DArt/SkillIcons/passives/Storm Weaver.png"]= { ["x"]= 925, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/SoulSiphoning.png"]= { + ["Art/2DArt/SkillIcons/passives/StrengthOfBlood.png"]= { + ["x"]= 962, + ["y"]= 930, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/StrikeSkillsNotable.png"]= { ["x"]= 0, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/SpellSuppressionLifeFlasksN.png"]= { + ["Art/2DArt/SkillIcons/passives/StunAvoidNotable.png"]= { ["x"]= 37, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/SpellSupressionAndEnergyShieldNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/StunMastery.png"]= { ["x"]= 74, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/SpellSupressionNotable1.png"]= { + ["Art/2DArt/SkillIcons/passives/SupremeProdigy.png"]= { ["x"]= 111, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/SpellSupressionNotable2.png"]= { + ["Art/2DArt/SkillIcons/passives/Survivalist.png"]= { ["x"]= 148, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/SpikedBulwark.png"]= { + ["Art/2DArt/SkillIcons/passives/SwordNotable1.png"]= { ["x"]= 185, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/SpiritualAid.png"]= { + ["Art/2DArt/SkillIcons/passives/TasteforBlood.png"]= { ["x"]= 222, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/SpiritualCommand.png"]= { + ["Art/2DArt/SkillIcons/passives/TempestBlast.png"]= { ["x"]= 259, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/StaffCrit.png"]= { + ["Art/2DArt/SkillIcons/passives/ThrillKiller.png"]= { ["x"]= 296, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/StaffNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/TinctureFlaskNotable1.png"]= { ["x"]= 333, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/StaffNotable2.png"]= { + ["Art/2DArt/SkillIcons/passives/TinctureManaNotable1.png"]= { ["x"]= 370, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/StaffNotable3.png"]= { + ["Art/2DArt/SkillIcons/passives/TinctureNotable1.png"]= { ["x"]= 407, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/StanceNotableReservation.png"]= { + ["Art/2DArt/SkillIcons/passives/TinctureNotable2.png"]= { ["x"]= 444, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/StanceNotableSwitching.png"]= { + ["Art/2DArt/SkillIcons/passives/TinctureNotable3.png"]= { ["x"]= 481, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Storm Weaver.png"]= { + ["Art/2DArt/SkillIcons/passives/TotemDmgNotable.png"]= { ["x"]= 518, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/StrengthOfBlood.png"]= { + ["Art/2DArt/SkillIcons/passives/Trap.png"]= { ["x"]= 555, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/StrikeSkillsNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Trap2.png"]= { ["x"]= 592, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/StunAvoidNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/TrapAndMineDmgNotable.png"]= { ["x"]= 629, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/StunMastery.png"]= { + ["Art/2DArt/SkillIcons/passives/Trickster/DamageOverTime.png"]= { ["x"]= 666, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/SupremeProdigy.png"]= { + ["Art/2DArt/SkillIcons/passives/Trickster/HeedfulRecovery.png"]= { ["x"]= 703, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Survivalist.png"]= { + ["Art/2DArt/SkillIcons/passives/Trickster/ImmuneToDoT.png"]= { ["x"]= 740, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/SwordNotable1.png"]= { + ["Art/2DArt/SkillIcons/passives/Trickster/OneStepAheadTrickster.png"]= { ["x"]= 777, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/TasteforBlood.png"]= { + ["Art/2DArt/SkillIcons/passives/Trickster/PolymathTrickster.png"]= { ["x"]= 814, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/TempestBlast.png"]= { + ["Art/2DArt/SkillIcons/passives/Trickster/SoulThiefTrickster.png"]= { ["x"]= 851, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ThrillKiller.png"]= { + ["Art/2DArt/SkillIcons/passives/Trickster/SupressionEnergyShieldTrickster.png"]= { ["x"]= 888, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/TinctureFlaskNotable1.png"]= { + ["Art/2DArt/SkillIcons/passives/Trickster/UncontrolledVigour.png"]= { ["x"]= 925, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/TinctureManaNotable1.png"]= { + ["Art/2DArt/SkillIcons/passives/TricksterAnointNotable.png"]= { + ["x"]= 962, + ["y"]= 967, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/TrueStriker.png"]= { ["x"]= 0, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/TinctureNotable1.png"]= { + ["Art/2DArt/SkillIcons/passives/TwoHandedMeleeDamage.png"]= { ["x"]= 37, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/TinctureNotable2.png"]= { + ["Art/2DArt/SkillIcons/passives/TwoHandedweaponImpalesNotable.png"]= { ["x"]= 74, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/TinctureNotable3.png"]= { + ["Art/2DArt/SkillIcons/passives/Unfaltering.png"]= { ["x"]= 111, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/TotemDmgNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Unrelenting.png"]= { ["x"]= 148, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Trap.png"]= { + ["Art/2DArt/SkillIcons/passives/Unwavering.png"]= { ["x"]= 185, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Trap2.png"]= { + ["Art/2DArt/SkillIcons/passives/UpwardsFiringProjectilesNotable.png"]= { ["x"]= 222, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/TrapAndMineDmgNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Vampirism.png"]= { ["x"]= 259, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Trickster/DamageOverTime.png"]= { + ["Art/2DArt/SkillIcons/passives/VoidBarrier.png"]= { ["x"]= 296, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Trickster/HeedfulRecovery.png"]= { + ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanBloodMagic1.png"]= { ["x"]= 333, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Trickster/ImmuneToDoT.png"]= { + ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanBloodMagic2.png"]= { ["x"]= 370, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Trickster/OneStepAheadTrickster.png"]= { + ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanBloodMagic3.png"]= { ["x"]= 407, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Trickster/PolymathTrickster.png"]= { + ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanCorpses.png"]= { ["x"]= 444, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Trickster/SoulThiefTrickster.png"]= { + ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanCurses2.png"]= { ["x"]= 481, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Trickster/SupressionEnergyShieldTrickster.png"]= { + ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanCursesChoice.png"]= { ["x"]= 518, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Trickster/UncontrolledVigour.png"]= { + ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanVoodooDoll.png"]= { ["x"]= 555, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/TricksterAnointNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/WandDamage.png"]= { ["x"]= 592, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/TrueStriker.png"]= { + ["Art/2DArt/SkillIcons/passives/WarcryBuffEffectNotable.png"]= { ["x"]= 629, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/TwoHandedMeleeDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/WarcryGainDamageNotable.png"]= { ["x"]= 666, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/TwoHandedweaponImpalesNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Warden/TinctureRangedNotable.png"]= { ["x"]= 703, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Unfaltering.png"]= { + ["Art/2DArt/SkillIcons/passives/Warden/WardenAllAilments.png"]= { ["x"]= 740, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Unrelenting.png"]= { + ["Art/2DArt/SkillIcons/passives/Warden/WardenBarkskin1.png"]= { ["x"]= 777, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Unwavering.png"]= { + ["Art/2DArt/SkillIcons/passives/Warden/WardenBarkskin2.png"]= { ["x"]= 814, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/UpwardsFiringProjectilesNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Warden/WardenColdAilments.png"]= { ["x"]= 851, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Vampirism.png"]= { + ["Art/2DArt/SkillIcons/passives/Warden/WardenFireAilments.png"]= { ["x"]= 888, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/VoidBarrier.png"]= { + ["Art/2DArt/SkillIcons/passives/Warden/WardenLightningAilments.png"]= { ["x"]= 925, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanBloodMagic1.png"]= { + ["Art/2DArt/SkillIcons/passives/Warden/WardenPrimitivism.png"]= { + ["x"]= 962, + ["y"]= 1004, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Warden/WardenSaps1.png"]= { ["x"]= 0, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanBloodMagic2.png"]= { + ["Art/2DArt/SkillIcons/passives/Warden/WardenSaps2.png"]= { ["x"]= 37, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanBloodMagic3.png"]= { + ["Art/2DArt/SkillIcons/passives/Warden/WardenSaps3.png"]= { ["x"]= 74, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanCorpses.png"]= { + ["Art/2DArt/SkillIcons/passives/Warden/WardenTracking.png"]= { ["x"]= 111, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanCurses2.png"]= { + ["Art/2DArt/SkillIcons/passives/WardenAnointNotable.png"]= { ["x"]= 148, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanCursesChoice.png"]= { + ["Art/2DArt/SkillIcons/passives/Warrior.png"]= { ["x"]= 185, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanVoodooDoll.png"]= { + ["Art/2DArt/SkillIcons/passives/WeaponElementalNotable.png"]= { ["x"]= 222, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/WandDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/WritteninBlood.png"]= { ["x"]= 259, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/WarcryBuffEffectNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/accuracydex.png"]= { ["x"]= 296, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/WarcryGainDamageNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/adderstouch.png"]= { ["x"]= 333, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Warden/TinctureRangedNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/ambidexterity.png"]= { ["x"]= 370, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Warden/WardenAllAilments.png"]= { + ["Art/2DArt/SkillIcons/passives/amplify.png"]= { ["x"]= 407, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Warden/WardenBarkskin1.png"]= { + ["Art/2DArt/SkillIcons/passives/animalspirit.png"]= { ["x"]= 444, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Warden/WardenBarkskin2.png"]= { + ["Art/2DArt/SkillIcons/passives/arcaneefficiency.png"]= { ["x"]= 481, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Warden/WardenColdAilments.png"]= { + ["Art/2DArt/SkillIcons/passives/arcane focus.png"]= { ["x"]= 518, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Warden/WardenFireAilments.png"]= { + ["Art/2DArt/SkillIcons/passives/arcanepotency.png"]= { ["x"]= 555, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Warden/WardenLightningAilments.png"]= { + ["Art/2DArt/SkillIcons/passives/arcaneradience.png"]= { ["x"]= 592, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Warden/WardenPrimitivism.png"]= { + ["Art/2DArt/SkillIcons/passives/armourmastery.png"]= { ["x"]= 629, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Warden/WardenSaps1.png"]= { + ["Art/2DArt/SkillIcons/passives/arsonist.png"]= { ["x"]= 666, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Warden/WardenSaps2.png"]= { + ["Art/2DArt/SkillIcons/passives/ashfrostandstorm.png"]= { ["x"]= 703, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Warden/WardenSaps3.png"]= { + ["Art/2DArt/SkillIcons/passives/attackspeedbow.png"]= { ["x"]= 740, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Warden/WardenTracking.png"]= { + ["Art/2DArt/SkillIcons/passives/authority.png"]= { ["x"]= 777, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/WardenAnointNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/barricade.png"]= { ["x"]= 814, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Warrior.png"]= { + ["Art/2DArt/SkillIcons/passives/berserking.png"]= { ["x"]= 851, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/WeaponElementalNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/bladebarrier.png"]= { ["x"]= 888, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/WritteninBlood.png"]= { + ["Art/2DArt/SkillIcons/passives/blademaster.png"]= { ["x"]= 925, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/accuracydex.png"]= { + ["Art/2DArt/SkillIcons/passives/blademistress.png"]= { + ["x"]= 962, + ["y"]= 1041, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/blastradius.png"]= { ["x"]= 0, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/adderstouch.png"]= { + ["Art/2DArt/SkillIcons/passives/bodysoul.png"]= { ["x"]= 37, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ambidexterity.png"]= { + ["Art/2DArt/SkillIcons/passives/borntofight.png"]= { ["x"]= 74, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/amplify.png"]= { + ["Art/2DArt/SkillIcons/passives/breathofrime.png"]= { ["x"]= 111, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/animalspirit.png"]= { + ["Art/2DArt/SkillIcons/passives/butchery.png"]= { ["x"]= 148, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/arcaneefficiency.png"]= { + ["Art/2DArt/SkillIcons/passives/castavoidinterruption.png"]= { ["x"]= 185, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/arcane focus.png"]= { + ["Art/2DArt/SkillIcons/passives/catalyse.png"]= { ["x"]= 222, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/arcanepotency.png"]= { + ["Art/2DArt/SkillIcons/passives/chargedex.png"]= { ["x"]= 259, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/arcaneradience.png"]= { + ["Art/2DArt/SkillIcons/passives/chargeint.png"]= { ["x"]= 296, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/armourmastery.png"]= { + ["Art/2DArt/SkillIcons/passives/chargestr.png"]= { ["x"]= 333, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/arsonist.png"]= { + ["Art/2DArt/SkillIcons/passives/cleverconstruction.png"]= { ["x"]= 370, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ashfrostandstorm.png"]= { + ["Art/2DArt/SkillIcons/passives/clustersLink2.png"]= { ["x"]= 407, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/attackspeedbow.png"]= { + ["Art/2DArt/SkillIcons/passives/clustersLink3.png"]= { ["x"]= 444, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/authority.png"]= { + ["Art/2DArt/SkillIcons/passives/criticalstrikemultiplier2.png"]= { ["x"]= 481, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/barricade.png"]= { + ["Art/2DArt/SkillIcons/passives/cruelblade.png"]= { ["x"]= 518, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/berserking.png"]= { + ["Art/2DArt/SkillIcons/passives/daggerpenetration.png"]= { ["x"]= 555, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/bladebarrier.png"]= { + ["Art/2DArt/SkillIcons/passives/deadlydraw.png"]= { ["x"]= 592, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/blademaster.png"]= { + ["Art/2DArt/SkillIcons/passives/deadlyprecision.png"]= { ["x"]= 629, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/blademistress.png"]= { + ["Art/2DArt/SkillIcons/passives/deathattunement.png"]= { ["x"]= 666, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/blastradius.png"]= { + ["Art/2DArt/SkillIcons/passives/deepthoughts.png"]= { ["x"]= 703, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/bodysoul.png"]= { + ["Art/2DArt/SkillIcons/passives/deepwisdom.png"]= { ["x"]= 740, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/borntofight.png"]= { + ["Art/2DArt/SkillIcons/passives/diamondskin.png"]= { ["x"]= 777, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/breathofrime.png"]= { + ["Art/2DArt/SkillIcons/passives/doomcast.png"]= { ["x"]= 814, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/butchery.png"]= { + ["Art/2DArt/SkillIcons/passives/eagleeye.png"]= { ["x"]= 851, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/castavoidinterruption.png"]= { + ["Art/2DArt/SkillIcons/passives/eagletalons.png"]= { ["x"]= 888, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/catalyse.png"]= { + ["Art/2DArt/SkillIcons/passives/elderpower.png"]= { ["x"]= 925, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/chargedex.png"]= { + ["Art/2DArt/SkillIcons/passives/elementalist.png"]= { + ["x"]= 962, + ["y"]= 1078, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/evasion.png"]= { ["x"]= 0, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/chargeint.png"]= { + ["Art/2DArt/SkillIcons/passives/executioner.png"]= { ["x"]= 37, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/chargestr.png"]= { + ["Art/2DArt/SkillIcons/passives/expeditiousmunitions.png"]= { ["x"]= 74, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/cleverconstruction.png"]= { + ["Art/2DArt/SkillIcons/passives/fellingtheweak.png"]= { ["x"]= 111, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/clustersLink2.png"]= { + ["Art/2DArt/SkillIcons/passives/fending.png"]= { ["x"]= 148, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/clustersLink3.png"]= { + ["Art/2DArt/SkillIcons/passives/finesse.png"]= { ["x"]= 185, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/criticalstrikemultiplier2.png"]= { + ["Art/2DArt/SkillIcons/passives/firedamage.png"]= { ["x"]= 222, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/cruelblade.png"]= { + ["Art/2DArt/SkillIcons/passives/flameborn.png"]= { ["x"]= 259, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/daggerpenetration.png"]= { + ["Art/2DArt/SkillIcons/passives/flaying.png"]= { ["x"]= 296, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/deadlydraw.png"]= { + ["Art/2DArt/SkillIcons/passives/foresight.png"]= { ["x"]= 333, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/deadlyprecision.png"]= { + ["Art/2DArt/SkillIcons/passives/frostborn.png"]= { ["x"]= 370, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/deathattunement.png"]= { + ["Art/2DArt/SkillIcons/passives/furybolts.png"]= { ["x"]= 407, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/deepthoughts.png"]= { + ["Art/2DArt/SkillIcons/passives/fussilade.png"]= { ["x"]= 444, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/deepwisdom.png"]= { + ["Art/2DArt/SkillIcons/passives/galvanichammer.png"]= { ["x"]= 481, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/diamondskin.png"]= { + ["Art/2DArt/SkillIcons/passives/golemsblood.png"]= { ["x"]= 518, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/doomcast.png"]= { + ["Art/2DArt/SkillIcons/passives/grace.png"]= { ["x"]= 555, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/eagleeye.png"]= { + ["Art/2DArt/SkillIcons/passives/graveexpectations.png"]= { ["x"]= 592, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/eagletalons.png"]= { + ["Art/2DArt/SkillIcons/passives/graveintentions.png"]= { ["x"]= 629, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/elderpower.png"]= { + ["Art/2DArt/SkillIcons/passives/gravepact.png"]= { ["x"]= 666, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/elementalist.png"]= { + ["Art/2DArt/SkillIcons/passives/hammerblows.png"]= { ["x"]= 703, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/evasion.png"]= { + ["Art/2DArt/SkillIcons/passives/hatchetmaster.png"]= { ["x"]= 740, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/executioner.png"]= { + ["Art/2DArt/SkillIcons/passives/heartofthegladiator.png"]= { ["x"]= 777, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/expeditiousmunitions.png"]= { + ["Art/2DArt/SkillIcons/passives/heartpierce.png"]= { ["x"]= 814, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/fellingtheweak.png"]= { + ["Art/2DArt/SkillIcons/passives/heartseeker.png"]= { ["x"]= 851, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/fending.png"]= { + ["Art/2DArt/SkillIcons/passives/heavydraw.png"]= { ["x"]= 888, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/finesse.png"]= { + ["Art/2DArt/SkillIcons/passives/hellfire.png"]= { ["x"]= 925, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/firedamage.png"]= { + ["Art/2DArt/SkillIcons/passives/highexplosives.png"]= { + ["x"]= 962, + ["y"]= 1115, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/icebite.png"]= { ["x"]= 0, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/flameborn.png"]= { + ["Art/2DArt/SkillIcons/passives/iceheart.png"]= { ["x"]= 37, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/flaying.png"]= { + ["Art/2DArt/SkillIcons/passives/increased armor.png"]= { ["x"]= 74, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/foresight.png"]= { + ["Art/2DArt/SkillIcons/passives/influence.png"]= { ["x"]= 111, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/frostborn.png"]= { + ["Art/2DArt/SkillIcons/passives/innerforce.png"]= { ["x"]= 148, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/furybolts.png"]= { + ["Art/2DArt/SkillIcons/passives/ironwoodtotem.png"]= { ["x"]= 185, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/fussilade.png"]= { + ["Art/2DArt/SkillIcons/passives/kingofthehill.png"]= { ["x"]= 222, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/galvanichammer.png"]= { + ["Art/2DArt/SkillIcons/passives/lavalash.png"]= { ["x"]= 259, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/golemsblood.png"]= { + ["Art/2DArt/SkillIcons/passives/leadership.png"]= { ["x"]= 296, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/grace.png"]= { + ["Art/2DArt/SkillIcons/passives/legendaryswordsman.png"]= { ["x"]= 333, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/graveexpectations.png"]= { + ["Art/2DArt/SkillIcons/passives/life1.png"]= { ["x"]= 370, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/graveintentions.png"]= { + ["Art/2DArt/SkillIcons/passives/lifeleech.png"]= { ["x"]= 407, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/gravepact.png"]= { + ["Art/2DArt/SkillIcons/passives/lifeleechimmunity.png"]= { ["x"]= 444, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/hammerblows.png"]= { + ["Art/2DArt/SkillIcons/passives/lightningint.png"]= { ["x"]= 481, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/hatchetmaster.png"]= { + ["Art/2DArt/SkillIcons/passives/lordofthedead.png"]= { ["x"]= 518, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/heartofthegladiator.png"]= { + ["Art/2DArt/SkillIcons/passives/macedmg.png"]= { ["x"]= 555, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/heartpierce.png"]= { + ["Art/2DArt/SkillIcons/passives/manaconduit.png"]= { ["x"]= 592, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/heartseeker.png"]= { + ["Art/2DArt/SkillIcons/passives/masterfletcher.png"]= { ["x"]= 629, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/heavydraw.png"]= { + ["Art/2DArt/SkillIcons/passives/mastersapper.png"]= { ["x"]= 666, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/hellfire.png"]= { + ["Art/2DArt/SkillIcons/passives/masterywand.png"]= { ["x"]= 703, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/highexplosives.png"]= { + ["Art/2DArt/SkillIcons/passives/melding.png"]= { ["x"]= 740, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/icebite.png"]= { + ["Art/2DArt/SkillIcons/passives/mentalacuity.png"]= { ["x"]= 777, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/iceheart.png"]= { + ["Art/2DArt/SkillIcons/passives/minddrinker.png"]= { ["x"]= 814, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/increased armor.png"]= { + ["Art/2DArt/SkillIcons/passives/minionblockchance.png"]= { ["x"]= 851, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/influence.png"]= { + ["Art/2DArt/SkillIcons/passives/newcolddamage.png"]= { ["x"]= 888, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/innerforce.png"]= { + ["Art/2DArt/SkillIcons/passives/newenergyshield.png"]= { ["x"]= 925, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ironwoodtotem.png"]= { + ["Art/2DArt/SkillIcons/passives/newevadepercentage.png"]= { + ["x"]= 962, + ["y"]= 1152, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/newincreasedcritical.png"]= { ["x"]= 0, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/kingofthehill.png"]= { + ["Art/2DArt/SkillIcons/passives/newnewattackspeed.png"]= { ["x"]= 37, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/lavalash.png"]= { + ["Art/2DArt/SkillIcons/passives/newtitanicmight.png"]= { ["x"]= 74, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/leadership.png"]= { + ["Art/2DArt/SkillIcons/passives/nightstalker.png"]= { ["x"]= 111, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/legendaryswordsman.png"]= { + ["Art/2DArt/SkillIcons/passives/nimbleness.png"]= { ["x"]= 148, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/life1.png"]= { + ["Art/2DArt/SkillIcons/passives/oxblood.png"]= { ["x"]= 185, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/lifeleech.png"]= { + ["Art/2DArt/SkillIcons/passives/perfectaim.png"]= { ["x"]= 222, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/lifeleechimmunity.png"]= { + ["Art/2DArt/SkillIcons/passives/plusdexterity.png"]= { ["x"]= 259, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/lightningint.png"]= { + ["Art/2DArt/SkillIcons/passives/plusintelligence.png"]= { ["x"]= 296, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/lordofthedead.png"]= { + ["Art/2DArt/SkillIcons/passives/plusstrength.png"]= { ["x"]= 333, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/macedmg.png"]= { + ["Art/2DArt/SkillIcons/passives/potencyofwill.png"]= { ["x"]= 370, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/manaconduit.png"]= { + ["Art/2DArt/SkillIcons/passives/precision.png"]= { ["x"]= 407, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/masterfletcher.png"]= { + ["Art/2DArt/SkillIcons/passives/pyromaniac.png"]= { ["x"]= 444, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/mastersapper.png"]= { + ["Art/2DArt/SkillIcons/passives/quickstep.png"]= { ["x"]= 481, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/masterywand.png"]= { + ["Art/2DArt/SkillIcons/passives/razorsedge.png"]= { ["x"]= 518, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/melding.png"]= { + ["Art/2DArt/SkillIcons/passives/reaver.png"]= { ["x"]= 555, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/mentalacuity.png"]= { + ["Art/2DArt/SkillIcons/passives/revengeofthehunted.png"]= { ["x"]= 592, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/minddrinker.png"]= { + ["Art/2DArt/SkillIcons/passives/saboteur.png"]= { ["x"]= 629, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/minionblockchance.png"]= { + ["Art/2DArt/SkillIcons/passives/savant.png"]= { ["x"]= 666, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/newcolddamage.png"]= { + ["Art/2DArt/SkillIcons/passives/scissorblades.png"]= { ["x"]= 703, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/newenergyshield.png"]= { + ["Art/2DArt/SkillIcons/passives/serpentstance.png"]= { ["x"]= 740, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/newevadepercentage.png"]= { + ["Art/2DArt/SkillIcons/passives/shamsnisticfury.png"]= { ["x"]= 777, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/newincreasedcritical.png"]= { + ["Art/2DArt/SkillIcons/passives/shieldwall.png"]= { ["x"]= 814, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/newnewattackspeed.png"]= { + ["Art/2DArt/SkillIcons/passives/skullcracking.png"]= { ["x"]= 851, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/newtitanicmight.png"]= { + ["Art/2DArt/SkillIcons/passives/soulsyphon.png"]= { ["x"]= 888, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/nightstalker.png"]= { + ["Art/2DArt/SkillIcons/passives/sovereignty.png"]= { ["x"]= 925, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/nimbleness.png"]= { + ["Art/2DArt/SkillIcons/passives/sparkingattacks.png"]= { + ["x"]= 962, + ["y"]= 1189, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/stabbingcomeback.png"]= { ["x"]= 0, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/oxblood.png"]= { + ["Art/2DArt/SkillIcons/passives/staticshield.png"]= { ["x"]= 37, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/perfectaim.png"]= { + ["Art/2DArt/SkillIcons/passives/stormborn.png"]= { ["x"]= 74, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/plusdexterity.png"]= { + ["Art/2DArt/SkillIcons/passives/strongarm.png"]= { ["x"]= 111, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/plusintelligence.png"]= { + ["Art/2DArt/SkillIcons/passives/stunmace.png"]= { ["x"]= 148, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/plusstrength.png"]= { + ["Art/2DArt/SkillIcons/passives/stunstaff.png"]= { ["x"]= 185, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/potencyofwill.png"]= { + ["Art/2DArt/SkillIcons/passives/swagger.png"]= { ["x"]= 222, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/precision.png"]= { + ["Art/2DArt/SkillIcons/passives/swashbuckler.png"]= { ["x"]= 259, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/pyromaniac.png"]= { + ["Art/2DArt/SkillIcons/passives/talonsofmurder.png"]= { ["x"]= 296, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/quickstep.png"]= { + ["Art/2DArt/SkillIcons/passives/thickskin.png"]= { ["x"]= 333, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/razorsedge.png"]= { + ["Art/2DArt/SkillIcons/passives/throatseeker.png"]= { ["x"]= 370, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/reaver.png"]= { + ["Art/2DArt/SkillIcons/passives/titanicmight.png"]= { ["x"]= 407, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/revengeofthehunted.png"]= { + ["Art/2DArt/SkillIcons/passives/totemandbrandrange.png"]= { ["x"]= 444, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/saboteur.png"]= { + ["Art/2DArt/SkillIcons/passives/totemicmastery.png"]= { ["x"]= 481, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/savant.png"]= { + ["Art/2DArt/SkillIcons/passives/totemiczeal.png"]= { ["x"]= 518, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/scissorblades.png"]= { + ["Art/2DArt/SkillIcons/passives/trapsradius.png"]= { ["x"]= 555, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/serpentstance.png"]= { + ["Art/2DArt/SkillIcons/passives/trollblood.png"]= { ["x"]= 592, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/shamsnisticfury.png"]= { + ["Art/2DArt/SkillIcons/passives/volitilemines.png"]= { ["x"]= 629, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/shieldwall.png"]= { + ["Art/2DArt/SkillIcons/passives/wandslingersprowess.png"]= { ["x"]= 666, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/skullcracking.png"]= { + ["Art/2DArt/SkillIcons/passives/whirlingstaff.png"]= { ["x"]= 703, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/soulsyphon.png"]= { + ["Art/2DArt/SkillIcons/passives/wreckingball.png"]= { ["x"]= 740, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/sovereignty.png"]= { + ["Art/2DArt/SkillIcons/passives/Ascendants/Assassin.png"]= { ["x"]= 777, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/sparkingattacks.png"]= { + ["Art/2DArt/SkillIcons/passives/Ascendants/Berserker.png"]= { ["x"]= 814, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/stabbingcomeback.png"]= { + ["Art/2DArt/SkillIcons/passives/Ascendants/Champion.png"]= { ["x"]= 851, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/staticshield.png"]= { + ["Art/2DArt/SkillIcons/passives/Ascendants/Chieftain.png"]= { ["x"]= 888, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/stormborn.png"]= { + ["Art/2DArt/SkillIcons/passives/Ascendants/Deadeye.png"]= { ["x"]= 925, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/strongarm.png"]= { + ["Art/2DArt/SkillIcons/passives/Ascendants/Elementalist.png"]= { + ["x"]= 962, + ["y"]= 1226, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/Gladiator.png"]= { ["x"]= 0, ["y"]= 1263, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/stunmace.png"]= { + ["Art/2DArt/SkillIcons/passives/Ascendants/Guardian.png"]= { ["x"]= 37, ["y"]= 1263, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/stunstaff.png"]= { + ["Art/2DArt/SkillIcons/passives/Ascendants/Hierophant.png"]= { ["x"]= 74, ["y"]= 1263, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/swagger.png"]= { + ["Art/2DArt/SkillIcons/passives/Ascendants/Inquisitor.png"]= { ["x"]= 111, ["y"]= 1263, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/swashbuckler.png"]= { + ["Art/2DArt/SkillIcons/passives/Ascendants/Juggernaut.png"]= { ["x"]= 148, ["y"]= 1263, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/talonsofmurder.png"]= { + ["Art/2DArt/SkillIcons/passives/Ascendants/Necromancer.png"]= { ["x"]= 185, ["y"]= 1263, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/thickskin.png"]= { + ["Art/2DArt/SkillIcons/passives/Ascendants/Occultist.png"]= { ["x"]= 222, ["y"]= 1263, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/throatseeker.png"]= { + ["Art/2DArt/SkillIcons/passives/Ascendants/Pathfinder.png"]= { ["x"]= 259, ["y"]= 1263, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/titanicmight.png"]= { + ["Art/2DArt/SkillIcons/passives/Ascendants/Raider.png"]= { ["x"]= 296, ["y"]= 1263, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/totemandbrandrange.png"]= { + ["Art/2DArt/SkillIcons/passives/Ascendants/Saboteur.png"]= { ["x"]= 333, ["y"]= 1263, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/totemicmastery.png"]= { + ["Art/2DArt/SkillIcons/passives/Ascendants/Slayer.png"]= { ["x"]= 370, ["y"]= 1263, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/totemiczeal.png"]= { + ["Art/2DArt/SkillIcons/passives/Ascendants/Trickster.png"]= { ["x"]= 407, ["y"]= 1263, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/trapsradius.png"]= { + ["Art/2DArt/SkillIcons/passives/Assassin/Ambush.png"]= { ["x"]= 444, ["y"]= 1263, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/trollblood.png"]= { + ["Art/2DArt/SkillIcons/passives/Chieftain/TawhoaForestsStrength.png"]= { ["x"]= 481, ["y"]= 1263, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/volitilemines.png"]= { - ["x"]= 518, - ["y"]= 1263, - ["w"]= 37, - ["h"]= 37 - }, - ["Art/2DArt/SkillIcons/passives/wandslingersprowess.png"]= { - ["x"]= 555, - ["y"]= 1263, - ["w"]= 37, - ["h"]= 37 - }, - ["Art/2DArt/SkillIcons/passives/whirlingstaff.png"]= { - ["x"]= 592, - ["y"]= 1263, - ["w"]= 37, - ["h"]= 37 - }, - ["Art/2DArt/SkillIcons/passives/wreckingball.png"]= { - ["x"]= 629, - ["y"]= 1263, - ["w"]= 37, - ["h"]= 37 - }, ["Art/2DArt/SkillIcons/passives/HinekoraPassiveIcon1.png"]= { - ["x"]= 666, + ["x"]= 518, ["y"]= 1263, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/HinekoraPassiveIcon2.png"]= { - ["x"]= 703, + ["x"]= 555, ["y"]= 1263, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/HinekoraPassiveIcon3.png"]= { - ["x"]= 740, + ["x"]= 592, ["y"]= 1263, ["w"]= 37, ["h"]= 37 @@ -13977,8 +14229,8 @@ return { } }, ["keystoneInactive"]= { - ["filename"]= "https://web.poecdn.com/image/passive-skill/skills-disabled-3.jpg?ac7492dd", - ["w"]= 962, + ["filename"]= "https://web.poecdn.com/image/passive-skill/skills-disabled-3.jpg?94caf4e2", + ["w"]= 999, ["h"]= 1459, ["coords"]= { ["Art/2DArt/SkillIcons/passives/AnointOnlyKeystone.png"]= { @@ -14090,217 +14342,217 @@ return { ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/KeystoneEldritchBattery.png"]= { - ["x"]= 0, - ["y"]= 1353, + ["x"]= 936, + ["y"]= 1300, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/KeystoneElementalEquilibrium.png"]= { - ["x"]= 52, + ["x"]= 0, ["y"]= 1353, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/KeystoneElementalOverload.png"]= { - ["x"]= 104, + ["x"]= 52, ["y"]= 1353, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/KeystoneHexMaster.png"]= { - ["x"]= 156, + ["x"]= 104, ["y"]= 1353, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/KeystoneIronGrip.png"]= { - ["x"]= 208, + ["x"]= 156, ["y"]= 1353, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/KeystoneIronReflexes.png"]= { - ["x"]= 260, + ["x"]= 208, ["y"]= 1353, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/KeystoneIronWill.png"]= { - ["x"]= 312, + ["x"]= 260, ["y"]= 1353, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/KeystoneMinionInstability.png"]= { - ["x"]= 364, + ["x"]= 312, ["y"]= 1353, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/KeystoneNecromanticAegis.png"]= { - ["x"]= 416, + ["x"]= 364, ["y"]= 1353, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/KeystonePainAttunement.png"]= { - ["x"]= 468, + ["x"]= 416, ["y"]= 1353, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/KeystonePointBlankArcher.png"]= { - ["x"]= 520, + ["x"]= 468, ["y"]= 1353, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/KeystoneResoluteTechnique.png"]= { - ["x"]= 572, + ["x"]= 520, ["y"]= 1353, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/KeystoneUnwaveringStance.png"]= { - ["x"]= 624, + ["x"]= 572, ["y"]= 1353, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/Kineticism.png"]= { - ["x"]= 676, + ["x"]= 624, ["y"]= 1353, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/LoneMessenger.png"]= { - ["x"]= 728, + ["x"]= 676, ["y"]= 1353, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/MiracleMaker.png"]= { - ["x"]= 780, + ["x"]= 728, ["y"]= 1353, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/MomentofRespite.png"]= { - ["x"]= 832, + ["x"]= 780, ["y"]= 1353, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/NaturesPatience.png"]= { - ["x"]= 884, + ["x"]= 832, ["y"]= 1353, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/Occultist/EldrichBarrier.png"]= { - ["x"]= 0, - ["y"]= 1406, + ["x"]= 884, + ["y"]= 1353, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/Pitfighter.png"]= { - ["x"]= 52, - ["y"]= 1406, + ["x"]= 936, + ["y"]= 1353, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/PreciseTechnique.png"]= { - ["x"]= 104, + ["x"]= 0, ["y"]= 1406, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/Resilience.png"]= { - ["x"]= 156, + ["x"]= 52, ["y"]= 1406, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/RetaliationKeystone.png"]= { - ["x"]= 208, + ["x"]= 104, ["y"]= 1406, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/SacredBastionKeystone.png"]= { - ["x"]= 260, + ["x"]= 156, ["y"]= 1406, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/SecretOfAgony.png"]= { - ["x"]= 312, + ["x"]= 208, ["y"]= 1406, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/SupremeEgo.png"]= { - ["x"]= 364, + ["x"]= 260, ["y"]= 1406, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/TinctureKeystone1.png"]= { - ["x"]= 416, + ["x"]= 312, ["y"]= 1406, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/Trickster/AcrobaticWillpower.png"]= { - ["x"]= 468, + ["x"]= 364, ["y"]= 1406, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/VersatileCombatant.png"]= { - ["x"]= 520, + ["x"]= 416, ["y"]= 1406, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/VeteransAwareness.png"]= { - ["x"]= 572, + ["x"]= 468, ["y"]= 1406, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/WindDancer.png"]= { - ["x"]= 624, + ["x"]= 520, ["y"]= 1406, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/ghostreaver.png"]= { - ["x"]= 676, + ["x"]= 572, ["y"]= 1406, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/heroicspirit.png"]= { - ["x"]= 728, + ["x"]= 624, ["y"]= 1406, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/liferegentoenergyshield.png"]= { - ["x"]= 780, + ["x"]= 676, ["y"]= 1406, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/totemmax.png"]= { - ["x"]= 832, + ["x"]= 728, ["y"]= 1406, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/vaalpact.png"]= { - ["x"]= 884, + ["x"]= 780, ["y"]= 1406, ["w"]= 52, ["h"]= 53 @@ -17169,9 +17421,9 @@ return { } }, ["tattooActiveEffect"]= { - ["filename"]= "https://web.poecdn.com/image/passive-skill/tattoo-active-effect-3.png?3b0007d2", + ["filename"]= "https://web.poecdn.com/image/passive-skill/tattoo-active-effect-3.png?b8637bfd", ["w"]= 556, - ["h"]= 704, + ["h"]= 842, ["coords"]= { ["Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/ArohonguiTribePassiveBG.png"]= { ["x"]= 0, @@ -17191,65 +17443,77 @@ return { ["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/KeystoneHinekoraPassiveBG.png"]= { + ["x"]= { + 417, + 0 + }, + ["y"]= { + 0, + 552 + }, + ["w"]= { + 139, + 288 + }, + ["h"]= { + 138, + 290 + } }, - ["Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/NgamahuTribePassiveBG.png"]= { + ["Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KitavaTribePassiveBG.png"]= { ["x"]= 0, ["y"]= 138, ["w"]= 139, ["h"]= 138 }, - ["Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/RamakoTribePassiveBG.png"]= { + ["Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/NgamahuTribePassiveBG.png"]= { ["x"]= 139, ["y"]= 138, ["w"]= 139, ["h"]= 138 }, - ["Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/RongokuraiTribePassiveBG.png"]= { + ["Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/RamakoTribePassiveBG.png"]= { ["x"]= 278, ["y"]= 138, ["w"]= 139, ["h"]= 138 }, - ["Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/TasalioTribePassiveBG.png"]= { + ["Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/RongokuraiTribePassiveBG.png"]= { ["x"]= 417, ["y"]= 138, ["w"]= 139, ["h"]= 138 }, - ["Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/TawhoaTribePassiveBG.png"]= { + ["Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/TasalioTribePassiveBG.png"]= { ["x"]= 0, ["y"]= 276, ["w"]= 139, ["h"]= 138 }, - ["Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/TukohamaTribePassiveBG.png"]= { + ["Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/TawhoaTribePassiveBG.png"]= { ["x"]= 139, ["y"]= 276, ["w"]= 139, ["h"]= 138 }, - ["Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/ValakoTribePassiveBG.png"]= { + ["Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/TukohamaTribePassiveBG.png"]= { ["x"]= 278, ["y"]= 276, ["w"]= 139, ["h"]= 138 }, - ["Art/2DArt/UIImages/InGame/Village/RuneCraftingPassiveBG.png"]= { + ["Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/ValakoTribePassiveBG.png"]= { ["x"]= 417, ["y"]= 276, ["w"]= 139, ["h"]= 138 }, - ["Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png"]= { + ["Art/2DArt/UIImages/InGame/Village/RuneCraftingPassiveBG.png"]= { ["x"]= 0, ["y"]= 414, - ["w"]= 288, - ["h"]= 290 + ["w"]= 139, + ["h"]= 138 } } }, diff --git a/src/TreeData/3_28/tattoo-active-effect-3.png b/src/TreeData/3_28/tattoo-active-effect-3.png index 1dcfb6763eb..ed968d559f7 100644 Binary files a/src/TreeData/3_28/tattoo-active-effect-3.png and b/src/TreeData/3_28/tattoo-active-effect-3.png differ diff --git a/src/TreeData/3_28/tree.lua b/src/TreeData/3_28/tree.lua index 6cca51d95c7..84073a09352 100644 --- a/src/TreeData/3_28/tree.lua +++ b/src/TreeData/3_28/tree.lua @@ -14886,7 +14886,7 @@ return { }, [35069]= { ["skill"]= 35069, - ["name"]= " Lightning Damage", + ["name"]= "Lightning Damage", ["icon"]= "Art/2DArt/SkillIcons/passives/AtlasTrees/BreachBossClaspedHands.png", ["ascendancyName"]= "Breachlord", ["isBloodline"]= true, diff --git a/src/TreeData/3_28_alternate/skills-3.jpg b/src/TreeData/3_28_alternate/skills-3.jpg index 849a354f836..8cf716e1509 100644 Binary files a/src/TreeData/3_28_alternate/skills-3.jpg and b/src/TreeData/3_28_alternate/skills-3.jpg differ diff --git a/src/TreeData/3_28_alternate/skills-disabled-3.jpg b/src/TreeData/3_28_alternate/skills-disabled-3.jpg index de90f50dcc8..4f88dd42e36 100644 Binary files a/src/TreeData/3_28_alternate/skills-disabled-3.jpg and b/src/TreeData/3_28_alternate/skills-disabled-3.jpg differ diff --git a/src/TreeData/3_28_alternate/sprites.lua b/src/TreeData/3_28_alternate/sprites.lua index d629e41ba29..d18dd287028 100644 --- a/src/TreeData/3_28_alternate/sprites.lua +++ b/src/TreeData/3_28_alternate/sprites.lua @@ -46,8 +46,8 @@ return { } }, ["normalActive"]= { - ["filename"]= "https://web.poecdn.com/image/passive-skill/skills-3.jpg?24c5e3b9", - ["w"]= 962, + ["filename"]= "https://web.poecdn.com/image/passive-skill/skills-3.jpg?b1b66a3b", + ["w"]= 999, ["h"]= 1459, ["coords"]= { ["Art/2DArt/SkillIcons/passives/2handeddamage.png"]= { @@ -273,2539 +273,2539 @@ return { ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/AtlasTrees/BestiaryNode1.png"]= { + ["x"]= 962, + ["y"]= 0, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/BestiaryNotable4.png"]= { ["x"]= 0, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/AtlasTrees/BestiaryNotable4.png"]= { + ["Art/2DArt/SkillIcons/passives/AtlasTrees/BestiaryNotable5.png"]= { ["x"]= 26, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/AtlasTrees/BestiaryNotable5.png"]= { + ["Art/2DArt/SkillIcons/passives/AtlasTrees/BestiaryNotable6.png"]= { ["x"]= 52, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/AtlasTrees/BestiaryNotable6.png"]= { + ["Art/2DArt/SkillIcons/passives/AtlasTrees/BloodLineOlrothRune1.png"]= { ["x"]= 78, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/AtlasTrees/BloodLineOlrothRune1.png"]= { + ["Art/2DArt/SkillIcons/passives/AtlasTrees/BloodLineOlrothRune2.png"]= { ["x"]= 104, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/AtlasTrees/BloodLineOlrothRune2.png"]= { + ["Art/2DArt/SkillIcons/passives/AtlasTrees/BloodLineOlrothRune3.png"]= { ["x"]= 130, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/AtlasTrees/BloodLineOlrothRune3.png"]= { + ["Art/2DArt/SkillIcons/passives/AtlasTrees/BoldUndertaking.png"]= { ["x"]= 156, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/AtlasTrees/BoldUndertaking.png"]= { + ["Art/2DArt/SkillIcons/passives/AtlasTrees/BreachBossClaspedHands.png"]= { ["x"]= 182, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/AtlasTrees/BreachBossClaspedHands.png"]= { + ["Art/2DArt/SkillIcons/passives/AtlasTrees/DeliriumNode1.png"]= { ["x"]= 208, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/AtlasTrees/DeliriumNode1.png"]= { + ["Art/2DArt/SkillIcons/passives/AtlasTrees/ExpeditionNode1.png"]= { ["x"]= 234, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/AtlasTrees/ExpeditionNode1.png"]= { + ["Art/2DArt/SkillIcons/passives/AtlasTrees/HarbingerNotable3.png"]= { ["x"]= 260, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/AtlasTrees/HarbingerNotable3.png"]= { + ["Art/2DArt/SkillIcons/passives/AtlasTrees/LichNode1.png"]= { ["x"]= 286, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/AtlasTrees/LichNode1.png"]= { + ["Art/2DArt/SkillIcons/passives/AtlasTrees/LyciaNode1.png"]= { ["x"]= 312, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/AtlasTrees/LyciaNode1.png"]= { + ["Art/2DArt/SkillIcons/passives/AtlasTrees/MorePrimalWispsSmall.png"]= { ["x"]= 338, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/AtlasTrees/MorePrimalWispsSmall.png"]= { + ["Art/2DArt/SkillIcons/passives/AtlasTrees/MoreVividWispsSmall.png"]= { ["x"]= 364, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/AtlasTrees/MoreVividWispsSmall.png"]= { + ["Art/2DArt/SkillIcons/passives/AtlasTrees/MoreWildWispsSmall.png"]= { ["x"]= 390, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/AtlasTrees/MoreWildWispsSmall.png"]= { + ["Art/2DArt/SkillIcons/passives/AtlasTrees/PerandusNotable2.png"]= { ["x"]= 416, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/AtlasTrees/PerandusNotable2.png"]= { + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RitualBloodlineNode.png"]= { ["x"]= 442, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/AtlasTrees/RitualBloodlineNode.png"]= { + ["Art/2DArt/SkillIcons/passives/AtlasTrees/UltimatumNode1.png"]= { ["x"]= 468, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/AtlasTrees/UltimatumNode1.png"]= { + ["Art/2DArt/SkillIcons/passives/AtlasTrees/UltimatumNotable6.png"]= { ["x"]= 494, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/AtlasTrees/UltimatumNotable6.png"]= { + ["Art/2DArt/SkillIcons/passives/AtlasTrees/UltimatumNotableMonsters1.png"]= { ["x"]= 520, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/AtlasTrees/UltimatumNotableMonsters1.png"]= { + ["Art/2DArt/SkillIcons/passives/AtlasTrees/UltimatumNotableMonsters2.png"]= { ["x"]= 546, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/AtlasTrees/UltimatumNotableMonsters2.png"]= { + ["Art/2DArt/SkillIcons/passives/AtlasTrees/UltimatumNotableStoneCircle.png"]= { ["x"]= 572, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/AtlasTrees/UltimatumNotableStoneCircle.png"]= { + ["Art/2DArt/SkillIcons/passives/AttackBlindNode.png"]= { ["x"]= 598, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/AttackBlindNode.png"]= { + ["Art/2DArt/SkillIcons/passives/AttackDamangeAndEvasionNotableNode.png"]= { ["x"]= 624, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/AttackDamangeAndEvasionNotableNode.png"]= { + ["Art/2DArt/SkillIcons/passives/AttackPoisonNode.png"]= { ["x"]= 650, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/AttackPoisonNode.png"]= { + ["Art/2DArt/SkillIcons/passives/AuraEffectNode.png"]= { ["x"]= 676, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/AuraEffectNode.png"]= { + ["Art/2DArt/SkillIcons/passives/BannerAreaNode.png"]= { ["x"]= 702, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/BannerAreaNode.png"]= { + ["Art/2DArt/SkillIcons/passives/BannerDurationNode.png"]= { ["x"]= 728, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/BannerDurationNode.png"]= { + ["Art/2DArt/SkillIcons/passives/BannerEffectNode.png"]= { ["x"]= 754, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/BannerEffectNode.png"]= { + ["Art/2DArt/SkillIcons/passives/BannerResourceAreaNode.png"]= { ["x"]= 780, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/BannerResourceAreaNode.png"]= { + ["Art/2DArt/SkillIcons/passives/BeltimberBladeNode.png"]= { ["x"]= 806, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/BeltimberBladeNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Berserker/DmgAttackSpeed.png"]= { ["x"]= 832, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Berserker/DmgAttackSpeed.png"]= { + ["Art/2DArt/SkillIcons/passives/Berserker/DmgCrit.png"]= { ["x"]= 858, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Berserker/DmgCrit.png"]= { + ["Art/2DArt/SkillIcons/passives/Berserker/DmgLeech.png"]= { ["x"]= 884, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Berserker/DmgLeech.png"]= { + ["Art/2DArt/SkillIcons/passives/Berserker/DmgWarcry.png"]= { ["x"]= 910, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Berserker/DmgWarcry.png"]= { + ["Art/2DArt/SkillIcons/passives/BleedAndPoisonMitigateNode.png"]= { ["x"]= 936, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/BleedAndPoisonMitigateNode.png"]= { + ["Art/2DArt/SkillIcons/passives/BlockAttackDmgNode.png"]= { + ["x"]= 962, + ["y"]= 26, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/BlockSpellDmgNode.png"]= { ["x"]= 0, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/BlockAttackDmgNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Blood2.png"]= { ["x"]= 26, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/BlockSpellDmgNode.png"]= { + ["Art/2DArt/SkillIcons/passives/BluntInstrument.png"]= { ["x"]= 52, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Blood2.png"]= { + ["Art/2DArt/SkillIcons/passives/BowDamage.png"]= { ["x"]= 78, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/BluntInstrument.png"]= { + ["Art/2DArt/SkillIcons/passives/Brand1.png"]= { ["x"]= 104, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/BowDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/Brand2.png"]= { ["x"]= 130, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Brand1.png"]= { + ["Art/2DArt/SkillIcons/passives/BrandDmgNode.png"]= { ["x"]= 156, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Brand2.png"]= { + ["Art/2DArt/SkillIcons/passives/BrassDomeNode.png"]= { ["x"]= 182, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/BrandDmgNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Champion/AnEAttDamage.png"]= { ["x"]= 208, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/BrassDomeNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Champion/AnEAura.png"]= { ["x"]= 234, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Champion/AnEAttDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/Champion/AnEFortify.png"]= { ["x"]= 260, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Champion/AnEAura.png"]= { + ["Art/2DArt/SkillIcons/passives/Champion/AnETaunt.png"]= { ["x"]= 286, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Champion/AnEFortify.png"]= { + ["Art/2DArt/SkillIcons/passives/Champion/ImpalePassive.png"]= { ["x"]= 312, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Champion/AnETaunt.png"]= { + ["Art/2DArt/SkillIcons/passives/ChaosDamage.png"]= { ["x"]= 338, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Champion/ImpalePassive.png"]= { + ["Art/2DArt/SkillIcons/passives/ChaosDamageOverTimeNode.png"]= { ["x"]= 364, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/ChaosDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/ChaosDamagenode.png"]= { ["x"]= 390, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/ChaosDamageOverTimeNode.png"]= { + ["Art/2DArt/SkillIcons/passives/ChaosResistNode.png"]= { ["x"]= 416, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/ChaosDamagenode.png"]= { + ["Art/2DArt/SkillIcons/passives/ChaosResistNotable.png"]= { ["x"]= 442, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/ChaosResistNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Chieftain/LifeRegenFireDamage.png"]= { ["x"]= 468, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/ChaosResistNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Chieftain/LifeRegenStrength.png"]= { ["x"]= 494, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Chieftain/LifeRegenFireDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/Chieftain/LifeRegenTotemPlacementSpeed.png"]= { ["x"]= 520, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Chieftain/LifeRegenStrength.png"]= { + ["Art/2DArt/SkillIcons/passives/ClawCritStrikeChanceNode.png"]= { ["x"]= 546, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Chieftain/LifeRegenTotemPlacementSpeed.png"]= { + ["Art/2DArt/SkillIcons/passives/ColdAndFireHybridNode.png"]= { ["x"]= 572, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/ClawCritStrikeChanceNode.png"]= { + ["Art/2DArt/SkillIcons/passives/ColdDamageOverTimeNode.png"]= { ["x"]= 598, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/ColdAndFireHybridNode.png"]= { + ["Art/2DArt/SkillIcons/passives/ColdDamagenode.png"]= { ["x"]= 624, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/ColdDamageOverTimeNode.png"]= { + ["Art/2DArt/SkillIcons/passives/ColdResistNode.png"]= { ["x"]= 650, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/ColdDamagenode.png"]= { + ["Art/2DArt/SkillIcons/passives/CooldownWarcryNode1.png"]= { ["x"]= 676, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/ColdResistNode.png"]= { + ["Art/2DArt/SkillIcons/passives/CorpseDamage.png"]= { ["x"]= 702, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/CooldownWarcryNode1.png"]= { + ["Art/2DArt/SkillIcons/passives/CorpseLife.png"]= { ["x"]= 728, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/CorpseDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/CurseAreaofEffect.png"]= { ["x"]= 754, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/CorpseLife.png"]= { + ["Art/2DArt/SkillIcons/passives/CurseCastSpeed.png"]= { ["x"]= 780, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/CurseAreaofEffect.png"]= { + ["Art/2DArt/SkillIcons/passives/CurseDuration.png"]= { ["x"]= 806, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/CurseCastSpeed.png"]= { + ["Art/2DArt/SkillIcons/passives/CurseEffectNode.png"]= { ["x"]= 832, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/CurseDuration.png"]= { + ["Art/2DArt/SkillIcons/passives/CurseManaCost.png"]= { ["x"]= 858, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/CurseEffectNode.png"]= { + ["Art/2DArt/SkillIcons/passives/CurseManaReservation.png"]= { ["x"]= 884, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/CurseManaCost.png"]= { + ["Art/2DArt/SkillIcons/passives/CursemitigationclusterNode.png"]= { ["x"]= 910, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/CurseManaReservation.png"]= { + ["Art/2DArt/SkillIcons/passives/CybilsClawNode.png"]= { ["x"]= 936, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/CursemitigationclusterNode.png"]= { + ["Art/2DArt/SkillIcons/passives/DamageOverTime.png"]= { + ["x"]= 962, + ["y"]= 52, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/DamageOverTimeNode.png"]= { ["x"]= 0, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/CybilsClawNode.png"]= { + ["Art/2DArt/SkillIcons/passives/DeadEye/ProjectileDamageAccuracy.png"]= { ["x"]= 26, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/DamageOverTime.png"]= { + ["Art/2DArt/SkillIcons/passives/DeadEye/ProjectileDamageAttackSpeed.png"]= { ["x"]= 52, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/DamageOverTimeNode.png"]= { + ["Art/2DArt/SkillIcons/passives/DivineFury.png"]= { ["x"]= 78, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/DeadEye/ProjectileDamageAccuracy.png"]= { + ["Art/2DArt/SkillIcons/passives/DivineWrath.png"]= { ["x"]= 104, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/DeadEye/ProjectileDamageAttackSpeed.png"]= { + ["Art/2DArt/SkillIcons/passives/DmgHeraldSkillsNode.png"]= { ["x"]= 130, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/DivineFury.png"]= { + ["Art/2DArt/SkillIcons/passives/DmgWhenChannelSkillsNode.png"]= { ["x"]= 156, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/DivineWrath.png"]= { + ["Art/2DArt/SkillIcons/passives/DodgeAtksNode.png"]= { ["x"]= 182, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/DmgHeraldSkillsNode.png"]= { + ["Art/2DArt/SkillIcons/passives/DualWieldNodeDefensive.png"]= { ["x"]= 208, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/DmgWhenChannelSkillsNode.png"]= { + ["Art/2DArt/SkillIcons/passives/DualWieldNodeOffensive.png"]= { ["x"]= 234, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/DodgeAtksNode.png"]= { + ["Art/2DArt/SkillIcons/passives/DurationofMinionsNode.png"]= { ["x"]= 260, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/DualWieldNodeDefensive.png"]= { + ["Art/2DArt/SkillIcons/passives/ElementalDamagenode.png"]= { ["x"]= 286, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/DualWieldNodeOffensive.png"]= { + ["Art/2DArt/SkillIcons/passives/ElementalResistance2.png"]= { ["x"]= 312, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/DurationofMinionsNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Elementalist/ElementalDamageAttackCasteSpeed.png"]= { ["x"]= 338, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/ElementalDamagenode.png"]= { + ["Art/2DArt/SkillIcons/passives/Elementalist/ElementalDamageElementalResistances.png"]= { ["x"]= 364, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/ElementalResistance2.png"]= { + ["Art/2DArt/SkillIcons/passives/Elementalist/ElementalDamageFreezeShockIgnite.png"]= { ["x"]= 390, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Elementalist/ElementalDamageAttackCasteSpeed.png"]= { + ["Art/2DArt/SkillIcons/passives/EmpoweredAttackWarcryNode1.png"]= { ["x"]= 416, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Elementalist/ElementalDamageElementalResistances.png"]= { + ["Art/2DArt/SkillIcons/passives/EnergyShieldNode.png"]= { ["x"]= 442, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Elementalist/ElementalDamageFreezeShockIgnite.png"]= { + ["Art/2DArt/SkillIcons/passives/EnergyshieldLeechPassivessmall.png"]= { ["x"]= 468, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/EmpoweredAttackWarcryNode1.png"]= { + ["Art/2DArt/SkillIcons/passives/EvasionNode.png"]= { ["x"]= 494, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/EnergyShieldNode.png"]= { + ["Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.png"]= { ["x"]= 520, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/EnergyshieldLeechPassivessmall.png"]= { + ["Art/2DArt/SkillIcons/passives/FireDamageOverTimeNode.png"]= { ["x"]= 546, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/EvasionNode.png"]= { + ["Art/2DArt/SkillIcons/passives/FireDamagenode.png"]= { ["x"]= 572, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.png"]= { + ["Art/2DArt/SkillIcons/passives/FireResistNode.png"]= { ["x"]= 598, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/FireDamageOverTimeNode.png"]= { + ["Art/2DArt/SkillIcons/passives/FlaskDurationnode.png"]= { ["x"]= 624, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/FireDamagenode.png"]= { + ["Art/2DArt/SkillIcons/passives/FortifyNode.png"]= { ["x"]= 650, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/FireResistNode.png"]= { + ["Art/2DArt/SkillIcons/passives/GenericWarcryNode1.png"]= { ["x"]= 676, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/FlaskDurationnode.png"]= { + ["Art/2DArt/SkillIcons/passives/GenericWarcryNode2.png"]= { ["x"]= 702, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/FortifyNode.png"]= { + ["Art/2DArt/SkillIcons/passives/GenericWarcryNode3.png"]= { ["x"]= 728, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/GenericWarcryNode1.png"]= { + ["Art/2DArt/SkillIcons/passives/Gladiator/GLADBlockChance.png"]= { ["x"]= 754, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/GenericWarcryNode2.png"]= { + ["Art/2DArt/SkillIcons/passives/Gladiator/GLADOneHand.png"]= { ["x"]= 780, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/GenericWarcryNode3.png"]= { + ["Art/2DArt/SkillIcons/passives/GolemsNode.png"]= { ["x"]= 806, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Gladiator/GLADBlockChance.png"]= { + ["Art/2DArt/SkillIcons/passives/GraceoftheGoddessNode.png"]= { ["x"]= 832, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Gladiator/GLADOneHand.png"]= { + ["Art/2DArt/SkillIcons/passives/GreenPhysicalDamageNode.png"]= { ["x"]= 858, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/GolemsNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Guardian/ArmourEnergyMeleeDamage.png"]= { ["x"]= 884, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/GraceoftheGoddessNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Guardian/ArmourEnergyShieldDefenseFromShields.png"]= { ["x"]= 910, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/GreenPhysicalDamageNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Guardian/ArmourEnergyShieldManaPool.png"]= { ["x"]= 936, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Guardian/ArmourEnergyMeleeDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/Guardian/ArmourEnergyShieldStaves.png"]= { + ["x"]= 962, + ["y"]= 78, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Guardian/GuardianHallowingFlameNode.png"]= { ["x"]= 0, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Guardian/ArmourEnergyShieldDefenseFromShields.png"]= { + ["Art/2DArt/SkillIcons/passives/Guardian/Minion Damage Armour and Energy Shield.png"]= { ["x"]= 26, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Guardian/ArmourEnergyShieldManaPool.png"]= { + ["Art/2DArt/SkillIcons/passives/Guardian/TimeOfNeed.png"]= { ["x"]= 52, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Guardian/ArmourEnergyShieldStaves.png"]= { + ["Art/2DArt/SkillIcons/passives/HalfColdHalfLightning.png"]= { ["x"]= 78, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Guardian/GuardianHallowingFlameNode.png"]= { + ["Art/2DArt/SkillIcons/passives/HeartbreakerNode.png"]= { ["x"]= 104, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Guardian/Minion Damage Armour and Energy Shield.png"]= { + ["Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.png"]= { ["x"]= 130, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Guardian/TimeOfNeed.png"]= { + ["Art/2DArt/SkillIcons/passives/HeraldDamageNotable.png"]= { ["x"]= 156, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/HalfColdHalfLightning.png"]= { + ["Art/2DArt/SkillIcons/passives/HeraldReservationNode.png"]= { ["x"]= 182, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/HeartbreakerNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Hierophant/ManaRegen.png"]= { ["x"]= 208, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.png"]= { + ["Art/2DArt/SkillIcons/passives/IgniteBleedNode.png"]= { ["x"]= 234, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/HeraldDamageNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/ImapleNode.png"]= { ["x"]= 260, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/HeraldReservationNode.png"]= { + ["Art/2DArt/SkillIcons/passives/ImpaleNode2.png"]= { ["x"]= 286, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Hierophant/ManaRegen.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreaseCritChanceNode.png"]= { ["x"]= 312, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/IgniteBleedNode.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreaseMinionLifeNode.png"]= { ["x"]= 338, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/ImapleNode.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreasedAttackDamageNode.png"]= { ["x"]= 364, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/ImpaleNode2.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreasedManaCostNode.png"]= { ["x"]= 390, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/IncreaseCritChanceNode.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreasedMaximumLifeNode.png"]= { ["x"]= 416, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/IncreaseMinionLifeNode.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreasedMinionDamageNode.png"]= { ["x"]= 442, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/IncreasedAttackDamageNode.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreasedNonDamageAilmentNode.png"]= { ["x"]= 468, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/IncreasedManaCostNode.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreasedProjectileSpeedNode.png"]= { ["x"]= 494, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/IncreasedMaximumLifeNode.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreasedSpellDamageNode.png"]= { ["x"]= 520, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/IncreasedMinionDamageNode.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreasedWarcryNode.png"]= { ["x"]= 546, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/IncreasedNonDamageAilmentNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageAttackCasteSpeed.png"]= { ["x"]= 572, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/IncreasedProjectileSpeedNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageAvoidElementalStatusEffects.png"]= { ["x"]= 598, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/IncreasedSpellDamageNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageCasteSpeed.png"]= { ["x"]= 624, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/IncreasedWarcryNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageElementalPenetration.png"]= { ["x"]= 650, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageAttackCasteSpeed.png"]= { + ["Art/2DArt/SkillIcons/passives/JacktheaxeNode.png"]= { ["x"]= 676, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageAvoidElementalStatusEffects.png"]= { + ["Art/2DArt/SkillIcons/passives/Juggernaut/IncreasedArmourAttackDamage.png"]= { ["x"]= 702, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageCasteSpeed.png"]= { + ["Art/2DArt/SkillIcons/passives/Juggernaut/IncreasedArmourAttackSpeed.png"]= { ["x"]= 728, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageElementalPenetration.png"]= { + ["Art/2DArt/SkillIcons/passives/Juggernaut/IncreasedArmourLifeRegeneration.png"]= { ["x"]= 754, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/JacktheaxeNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Juggernaut/IncreasedArmourMovementSpeed.png"]= { ["x"]= 780, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Juggernaut/IncreasedArmourAttackDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/Juggernaut/IncreasedArmourStunDuration.png"]= { ["x"]= 806, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Juggernaut/IncreasedArmourAttackSpeed.png"]= { + ["Art/2DArt/SkillIcons/passives/Juggernaut/JuggernautArmourNotable.png"]= { ["x"]= 832, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Juggernaut/IncreasedArmourLifeRegeneration.png"]= { + ["Art/2DArt/SkillIcons/passives/KeystoneArmourMaster.png"]= { ["x"]= 858, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Juggernaut/IncreasedArmourMovementSpeed.png"]= { + ["Art/2DArt/SkillIcons/passives/KiloavaShieldNode.png"]= { ["x"]= 884, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Juggernaut/IncreasedArmourStunDuration.png"]= { + ["Art/2DArt/SkillIcons/passives/KitavasHungerNode.png"]= { ["x"]= 910, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Juggernaut/JuggernautArmourNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/LifeAndEnergyShield.png"]= { ["x"]= 936, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/KeystoneArmourMaster.png"]= { + ["Art/2DArt/SkillIcons/passives/LifeAndReducedManaCost.png"]= { + ["x"]= 962, + ["y"]= 104, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/LifeManaFlasksrecoverynode.png"]= { ["x"]= 0, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/KiloavaShieldNode.png"]= { + ["Art/2DArt/SkillIcons/passives/LifeRecoupNode.png"]= { ["x"]= 26, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/KitavasHungerNode.png"]= { + ["Art/2DArt/SkillIcons/passives/LifeandCurses.png"]= { ["x"]= 52, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/LifeAndEnergyShield.png"]= { + ["Art/2DArt/SkillIcons/passives/LifeandMana.png"]= { ["x"]= 78, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/LifeAndReducedManaCost.png"]= { + ["Art/2DArt/SkillIcons/passives/LightningDamagenode.png"]= { ["x"]= 104, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/LifeManaFlasksrecoverynode.png"]= { + ["Art/2DArt/SkillIcons/passives/LightningResistNode.png"]= { ["x"]= 130, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/LifeRecoupNode.png"]= { + ["Art/2DArt/SkillIcons/passives/MaataSceptreNode.png"]= { ["x"]= 156, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/LifeandCurses.png"]= { + ["Art/2DArt/SkillIcons/passives/MaceElemental.png"]= { ["x"]= 182, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/LifeandMana.png"]= { + ["Art/2DArt/SkillIcons/passives/ManaAndEnergyShield.png"]= { ["x"]= 208, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/LightningDamagenode.png"]= { + ["Art/2DArt/SkillIcons/passives/ManaLeechThemedNode.png"]= { ["x"]= 234, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/LightningResistNode.png"]= { + ["Art/2DArt/SkillIcons/passives/ManaandCurses2.png"]= { ["x"]= 260, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/MaataSceptreNode.png"]= { + ["Art/2DArt/SkillIcons/passives/MarkNode.png"]= { ["x"]= 286, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/MaceElemental.png"]= { + ["Art/2DArt/SkillIcons/passives/MasteryBlank.png"]= { ["x"]= 312, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/ManaAndEnergyShield.png"]= { + ["Art/2DArt/SkillIcons/passives/MawOfConquestNode.png"]= { ["x"]= 338, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/ManaLeechThemedNode.png"]= { + ["Art/2DArt/SkillIcons/passives/MaxManaNode.png"]= { ["x"]= 364, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/ManaandCurses2.png"]= { + ["Art/2DArt/SkillIcons/passives/MeleeAoENode.png"]= { ["x"]= 390, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/MarkNode.png"]= { + ["Art/2DArt/SkillIcons/passives/MeleeCriticalStrikeChanceNode.png"]= { ["x"]= 416, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/MasteryBlank.png"]= { + ["Art/2DArt/SkillIcons/passives/MeleeCriticalStrikeMultiplierNode.png"]= { ["x"]= 442, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/MawOfConquestNode.png"]= { + ["Art/2DArt/SkillIcons/passives/MeleeFireNode.png"]= { ["x"]= 468, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/MaxManaNode.png"]= { + ["Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.png"]= { ["x"]= 494, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/MeleeAoENode.png"]= { + ["Art/2DArt/SkillIcons/passives/MineManaReservationNode.png"]= { ["x"]= 520, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/MeleeCriticalStrikeChanceNode.png"]= { + ["Art/2DArt/SkillIcons/passives/MinionAccuracyDamage.png"]= { ["x"]= 546, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/MeleeCriticalStrikeMultiplierNode.png"]= { + ["Art/2DArt/SkillIcons/passives/MinionChaosResistanceNode.png"]= { ["x"]= 572, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/MeleeFireNode.png"]= { + ["Art/2DArt/SkillIcons/passives/MinionDmgHeraldSkillsNode.png"]= { ["x"]= 598, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.png"]= { + ["Art/2DArt/SkillIcons/passives/MinionElementalResistancesNode.png"]= { ["x"]= 624, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/MineManaReservationNode.png"]= { + ["Art/2DArt/SkillIcons/passives/MovementSpeedandEvasionPassive.png"]= { ["x"]= 650, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/MinionAccuracyDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/MysticRefractorNode.png"]= { ["x"]= 676, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/MinionChaosResistanceNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Necromancer/CorpseConsumptionNode.png"]= { ["x"]= 702, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/MinionDmgHeraldSkillsNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Necromancer/IncreasedMinionDamageIncreasedMinionLife.png"]= { ["x"]= 728, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/MinionElementalResistancesNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Necromancer/IncreasedMinionDamageIncreasedSkillDuration.png"]= { ["x"]= 754, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/MovementSpeedandEvasionPassive.png"]= { + ["Art/2DArt/SkillIcons/passives/Necromancer/ManaNode.png"]= { ["x"]= 780, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/MysticRefractorNode.png"]= { + ["Art/2DArt/SkillIcons/passives/NodeAxeandSwordDamage.png"]= { ["x"]= 806, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Necromancer/CorpseConsumptionNode.png"]= { + ["Art/2DArt/SkillIcons/passives/NodeBowDamage.png"]= { ["x"]= 832, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Necromancer/IncreasedMinionDamageIncreasedMinionLife.png"]= { + ["Art/2DArt/SkillIcons/passives/NodeDaggerandClawDamage.png"]= { ["x"]= 858, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Necromancer/IncreasedMinionDamageIncreasedSkillDuration.png"]= { + ["Art/2DArt/SkillIcons/passives/NodeDualWieldingDamage.png"]= { ["x"]= 884, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Necromancer/ManaNode.png"]= { + ["Art/2DArt/SkillIcons/passives/NodeHoldingShieldDamage.png"]= { ["x"]= 910, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/NodeAxeandSwordDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/NodeMaceandStaffDamage.png"]= { ["x"]= 936, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/NodeBowDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/NodeTwoHandedMeleeDamage.png"]= { + ["x"]= 962, + ["y"]= 130, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/NodeWandDamage.png"]= { ["x"]= 0, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/NodeDaggerandClawDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/Occultist/EnergyShieldChaos.png"]= { ["x"]= 26, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/NodeDualWieldingDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/Occultist/EnergyShieldCold.png"]= { ["x"]= 52, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/NodeHoldingShieldDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/Occultist/IncreasedEnergyShieldAttackAndCastSpeed.png"]= { ["x"]= 78, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/NodeMaceandStaffDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/Occultist/IncreasedEnergyShieldCriticalStrikeChance.png"]= { ["x"]= 104, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/NodeTwoHandedMeleeDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/Occultist/IncreasedEnergyShieldManaReservation.png"]= { ["x"]= 130, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/NodeWandDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/Occultist/IncreasedEnergyShieldMaximumMana.png"]= { ["x"]= 156, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Occultist/EnergyShieldChaos.png"]= { + ["Art/2DArt/SkillIcons/passives/OneHandedPhysicalAndLeechNode.png"]= { ["x"]= 182, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Occultist/EnergyShieldCold.png"]= { + ["Art/2DArt/SkillIcons/passives/OneHandedPhysicalAndLeechNotable.png"]= { ["x"]= 208, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Occultist/IncreasedEnergyShieldAttackAndCastSpeed.png"]= { + ["Art/2DArt/SkillIcons/passives/PathFinder/FlaskEffectDamageOverTime.png"]= { ["x"]= 234, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Occultist/IncreasedEnergyShieldCriticalStrikeChance.png"]= { + ["Art/2DArt/SkillIcons/passives/PathFinder/FlaskEffectElementalResistance.png"]= { ["x"]= 260, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Occultist/IncreasedEnergyShieldManaReservation.png"]= { + ["Art/2DArt/SkillIcons/passives/PathFinder/FlaskEffectFlaskDuration.png"]= { ["x"]= 286, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Occultist/IncreasedEnergyShieldMaximumMana.png"]= { + ["Art/2DArt/SkillIcons/passives/PhysicalDamageNode.png"]= { ["x"]= 312, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/OneHandedPhysicalAndLeechNode.png"]= { + ["Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.png"]= { ["x"]= 338, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/OneHandedPhysicalAndLeechNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimenode3.png"]= { ["x"]= 364, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/PathFinder/FlaskEffectDamageOverTime.png"]= { + ["Art/2DArt/SkillIcons/passives/PhysicalDamagenode2.png"]= { ["x"]= 390, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/PathFinder/FlaskEffectElementalResistance.png"]= { + ["Art/2DArt/SkillIcons/passives/PhysicalandChaosDamage.png"]= { ["x"]= 416, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/PathFinder/FlaskEffectFlaskDuration.png"]= { + ["Art/2DArt/SkillIcons/passives/Poison.png"]= { ["x"]= 442, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/PhysicalDamageNode.png"]= { + ["Art/2DArt/SkillIcons/passives/PoisonSpellsNode.png"]= { ["x"]= 468, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Primalist/PrimalistNode.png"]= { ["x"]= 494, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimenode3.png"]= { + ["Art/2DArt/SkillIcons/passives/PrimordialCaneNode.png"]= { ["x"]= 520, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/PhysicalDamagenode2.png"]= { + ["Art/2DArt/SkillIcons/passives/ProjectileDmgNode.png"]= { ["x"]= 546, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/PhysicalandChaosDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/ProjectilesNode.png"]= { ["x"]= 572, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Poison.png"]= { + ["Art/2DArt/SkillIcons/passives/ProjectilesNode2.png"]= { ["x"]= 598, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/PoisonSpellsNode.png"]= { + ["Art/2DArt/SkillIcons/passives/ProsperosProtectionNode.png"]= { ["x"]= 624, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Primalist/PrimalistNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Rage.png"]= { ["x"]= 650, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/PrimordialCaneNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Raider/IncreasedElementalDamage.png"]= { ["x"]= 676, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/ProjectileDmgNode.png"]= { + ["Art/2DArt/SkillIcons/passives/RangedTotemAttackSpeed.png"]= { ["x"]= 702, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/ProjectilesNode.png"]= { + ["Art/2DArt/SkillIcons/passives/RangedTotemDamage.png"]= { ["x"]= 728, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/ProjectilesNode2.png"]= { + ["Art/2DArt/SkillIcons/passives/RedAttackSmallPassive.png"]= { ["x"]= 754, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/ProsperosProtectionNode.png"]= { + ["Art/2DArt/SkillIcons/passives/ReducedManaCostNode.png"]= { ["x"]= 780, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Rage.png"]= { + ["Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.png"]= { ["x"]= 806, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Raider/IncreasedElementalDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/RetaliationNode1.png"]= { ["x"]= 832, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/RangedTotemAttackSpeed.png"]= { + ["Art/2DArt/SkillIcons/passives/RetaliationNode2.png"]= { ["x"]= 858, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/RangedTotemDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/RetaliationNode3.png"]= { ["x"]= 884, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/RedAttackSmallPassive.png"]= { + ["Art/2DArt/SkillIcons/passives/RetaliationNode4.png"]= { ["x"]= 910, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/ReducedManaCostNode.png"]= { + ["Art/2DArt/SkillIcons/passives/RetaliationNode5.png"]= { ["x"]= 936, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Saboteur/ElementalDamageElementalResistance.png"]= { + ["x"]= 962, + ["y"]= 156, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Saboteur/ElementalDamageMines.png"]= { ["x"]= 0, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/RetaliationNode1.png"]= { + ["Art/2DArt/SkillIcons/passives/Saboteur/ElementalDamageMovementSpeed.png"]= { ["x"]= 26, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/RetaliationNode2.png"]= { + ["Art/2DArt/SkillIcons/passives/SareshBloodlineNode.png"]= { ["x"]= 52, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/RetaliationNode3.png"]= { + ["Art/2DArt/SkillIcons/passives/SharpandBrittle.png"]= { ["x"]= 78, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/RetaliationNode4.png"]= { + ["Art/2DArt/SkillIcons/passives/ShieldAttackDamage.png"]= { ["x"]= 104, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/RetaliationNode5.png"]= { + ["Art/2DArt/SkillIcons/passives/ShieldNodeOffensive.png"]= { ["x"]= 130, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Saboteur/ElementalDamageElementalResistance.png"]= { + ["Art/2DArt/SkillIcons/passives/Slayer/2HdmgAOE.png"]= { ["x"]= 156, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Saboteur/ElementalDamageMines.png"]= { + ["Art/2DArt/SkillIcons/passives/Slayer/2HdmgCritStrikeMultiplier.png"]= { ["x"]= 182, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Saboteur/ElementalDamageMovementSpeed.png"]= { + ["Art/2DArt/SkillIcons/passives/Slayer/2HdmgFrenzyEnduranceCharge.png"]= { ["x"]= 208, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/SareshBloodlineNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Slayer/2HdmgLeech.png"]= { ["x"]= 234, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/SharpandBrittle.png"]= { + ["Art/2DArt/SkillIcons/passives/Slayer/2HdmgSpeed.png"]= { ["x"]= 260, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/ShieldAttackDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/SpeedWarcryNode1.png"]= { ["x"]= 286, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/ShieldNodeOffensive.png"]= { + ["Art/2DArt/SkillIcons/passives/SpellMultiplyer2.png"]= { ["x"]= 312, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Slayer/2HdmgAOE.png"]= { + ["Art/2DArt/SkillIcons/passives/SpellSuppresionNode.png"]= { ["x"]= 338, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Slayer/2HdmgCritStrikeMultiplier.png"]= { + ["Art/2DArt/SkillIcons/passives/SpellSuppressionEnergyShield.png"]= { ["x"]= 364, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Slayer/2HdmgFrenzyEnduranceCharge.png"]= { + ["Art/2DArt/SkillIcons/passives/SpellSuppressionLifeFlasks.png"]= { ["x"]= 390, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Slayer/2HdmgLeech.png"]= { + ["Art/2DArt/SkillIcons/passives/StaffNodeDefensive.png"]= { ["x"]= 416, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Slayer/2HdmgSpeed.png"]= { + ["Art/2DArt/SkillIcons/passives/StaffNodeOffensive.png"]= { ["x"]= 442, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/SpeedWarcryNode1.png"]= { + ["Art/2DArt/SkillIcons/passives/StanceSmallPassive.png"]= { ["x"]= 468, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/SpellMultiplyer2.png"]= { + ["Art/2DArt/SkillIcons/passives/StancesNode.png"]= { ["x"]= 494, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/SpellSuppresionNode.png"]= { + ["Art/2DArt/SkillIcons/passives/StrikeRangeNode.png"]= { ["x"]= 520, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/SpellSuppressionEnergyShield.png"]= { + ["Art/2DArt/SkillIcons/passives/TearOfPurityNode.png"]= { ["x"]= 546, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/SpellSuppressionLifeFlasks.png"]= { + ["Art/2DArt/SkillIcons/passives/TerminusEstNode.png"]= { ["x"]= 572, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/StaffNodeDefensive.png"]= { + ["Art/2DArt/SkillIcons/passives/TheBurdenOfTruthNode.png"]= { ["x"]= 598, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/StaffNodeOffensive.png"]= { + ["Art/2DArt/SkillIcons/passives/TheBurdenofShadowsNode.png"]= { ["x"]= 624, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/StanceSmallPassive.png"]= { + ["Art/2DArt/SkillIcons/passives/TinctureFlaskNode1.png"]= { ["x"]= 650, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/StancesNode.png"]= { + ["Art/2DArt/SkillIcons/passives/TinctureNode1.png"]= { ["x"]= 676, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/StrikeRangeNode.png"]= { + ["Art/2DArt/SkillIcons/passives/TinctureNode2.png"]= { ["x"]= 702, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/TearOfPurityNode.png"]= { + ["Art/2DArt/SkillIcons/passives/TinctureNode3.png"]= { ["x"]= 728, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/TerminusEstNode.png"]= { + ["Art/2DArt/SkillIcons/passives/TotemDmgNode.png"]= { ["x"]= 754, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/TheBurdenOfTruthNode.png"]= { + ["Art/2DArt/SkillIcons/passives/TrapAndMineDmgNode.png"]= { ["x"]= 780, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/TheBurdenofShadowsNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Trickster/DefensiveNodeTrickster.png"]= { ["x"]= 806, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/TinctureFlaskNode1.png"]= { + ["Art/2DArt/SkillIcons/passives/Trickster/OffensiveNodeTrickster.png"]= { ["x"]= 832, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/TinctureNode1.png"]= { + ["Art/2DArt/SkillIcons/passives/VersusoBootsNode.png"]= { ["x"]= 858, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/TinctureNode2.png"]= { + ["Art/2DArt/SkillIcons/passives/VictariosJacketNode.png"]= { ["x"]= 884, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/TinctureNode3.png"]= { + ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanCurses2.png"]= { ["x"]= 910, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/TotemDmgNode.png"]= { + ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanNode.png"]= { ["x"]= 936, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/TrapAndMineDmgNode.png"]= { + ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanSpecialCurse1.png"]= { + ["x"]= 962, + ["y"]= 182, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanSpecialCurse2.png"]= { ["x"]= 0, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Trickster/DefensiveNodeTrickster.png"]= { + ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanSpecialCurse3.png"]= { ["x"]= 26, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Trickster/OffensiveNodeTrickster.png"]= { + ["Art/2DArt/SkillIcons/passives/WandCritical.png"]= { ["x"]= 52, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/VersusoBootsNode.png"]= { + ["Art/2DArt/SkillIcons/passives/WandSpeedAccuracyNode.png"]= { ["x"]= 78, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/VictariosJacketNode.png"]= { + ["Art/2DArt/SkillIcons/passives/WarCryCooldown.png"]= { ["x"]= 104, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanCurses2.png"]= { + ["Art/2DArt/SkillIcons/passives/WarcryBuffEffectNotable.png"]= { ["x"]= 130, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Warden/SpellSuppressionEvasion.png"]= { ["x"]= 156, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanSpecialCurse1.png"]= { + ["Art/2DArt/SkillIcons/passives/Warden/TincturesNode.png"]= { ["x"]= 182, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanSpecialCurse2.png"]= { + ["Art/2DArt/SkillIcons/passives/Warden/WardenNode.png"]= { ["x"]= 208, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanSpecialCurse3.png"]= { + ["Art/2DArt/SkillIcons/passives/Warden/WardenTracking.png"]= { ["x"]= 234, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/WandCritical.png"]= { + ["Art/2DArt/SkillIcons/passives/WarpedTimepieceNode.png"]= { ["x"]= 260, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/WandSpeedAccuracyNode.png"]= { + ["Art/2DArt/SkillIcons/passives/WidowhailBowNode.png"]= { ["x"]= 286, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/WarCryCooldown.png"]= { + ["Art/2DArt/SkillIcons/passives/accuracy.png"]= { ["x"]= 312, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/WarcryBuffEffectNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/accuracy2h.png"]= { ["x"]= 338, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Warden/SpellSuppressionEvasion.png"]= { + ["Art/2DArt/SkillIcons/passives/accuracydex.png"]= { ["x"]= 364, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Warden/TincturesNode.png"]= { + ["Art/2DArt/SkillIcons/passives/accuracysword.png"]= { ["x"]= 390, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Warden/WardenNode.png"]= { + ["Art/2DArt/SkillIcons/passives/arcaneradience.png"]= { ["x"]= 416, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Warden/WardenTracking.png"]= { + ["Art/2DArt/SkillIcons/passives/areaofeffect.png"]= { ["x"]= 442, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/WarpedTimepieceNode.png"]= { + ["Art/2DArt/SkillIcons/passives/attackspeed.png"]= { ["x"]= 468, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/WidowhailBowNode.png"]= { + ["Art/2DArt/SkillIcons/passives/attackspeed2h.png"]= { ["x"]= 494, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/accuracy.png"]= { + ["Art/2DArt/SkillIcons/passives/attackspeedaxe.png"]= { ["x"]= 520, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/accuracy2h.png"]= { + ["Art/2DArt/SkillIcons/passives/attackspeedbow.png"]= { ["x"]= 546, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/accuracydex.png"]= { + ["Art/2DArt/SkillIcons/passives/attackspeedclaw.png"]= { ["x"]= 572, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/accuracysword.png"]= { + ["Art/2DArt/SkillIcons/passives/attackspeeddagger.png"]= { ["x"]= 598, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/arcaneradience.png"]= { + ["Art/2DArt/SkillIcons/passives/attackspeeddual.png"]= { ["x"]= 624, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/areaofeffect.png"]= { + ["Art/2DArt/SkillIcons/passives/attackspeedmace.png"]= { ["x"]= 650, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/attackspeed.png"]= { + ["Art/2DArt/SkillIcons/passives/attackspeedsworddex.png"]= { ["x"]= 676, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/attackspeed2h.png"]= { + ["Art/2DArt/SkillIcons/passives/auraareaofeffect.png"]= { ["x"]= 702, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/attackspeedaxe.png"]= { + ["Art/2DArt/SkillIcons/passives/auraeffect.png"]= { ["x"]= 728, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/attackspeedbow.png"]= { + ["Art/2DArt/SkillIcons/passives/avoidburning.png"]= { ["x"]= 754, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/attackspeedclaw.png"]= { + ["Art/2DArt/SkillIcons/passives/avoidchilling.png"]= { ["x"]= 780, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/attackspeeddagger.png"]= { + ["Art/2DArt/SkillIcons/passives/axedmgspeed.png"]= { ["x"]= 806, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/attackspeeddual.png"]= { + ["Art/2DArt/SkillIcons/passives/blankDex.png"]= { ["x"]= 832, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/attackspeedmace.png"]= { + ["Art/2DArt/SkillIcons/passives/blankInt.png"]= { ["x"]= 858, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/attackspeedsworddex.png"]= { + ["Art/2DArt/SkillIcons/passives/blankStr.png"]= { ["x"]= 884, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/auraareaofeffect.png"]= { + ["Art/2DArt/SkillIcons/passives/blastradius.png"]= { ["x"]= 910, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/auraeffect.png"]= { + ["Art/2DArt/SkillIcons/passives/blockstaff.png"]= { ["x"]= 936, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/avoidburning.png"]= { + ["Art/2DArt/SkillIcons/passives/blockstr.png"]= { + ["x"]= 962, + ["y"]= 208, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/castavoidinterruption.png"]= { ["x"]= 0, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/avoidchilling.png"]= { + ["Art/2DArt/SkillIcons/passives/castspeed.png"]= { ["x"]= 26, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/axedmgspeed.png"]= { + ["Art/2DArt/SkillIcons/passives/chargedex.png"]= { ["x"]= 52, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/blankDex.png"]= { + ["Art/2DArt/SkillIcons/passives/chargeint.png"]= { ["x"]= 78, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/blankInt.png"]= { + ["Art/2DArt/SkillIcons/passives/chargestr.png"]= { ["x"]= 104, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/blankStr.png"]= { + ["Art/2DArt/SkillIcons/passives/clawmasterydex.png"]= { ["x"]= 130, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/blastradius.png"]= { + ["Art/2DArt/SkillIcons/passives/clustersLinknode1.png"]= { ["x"]= 156, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/blockstaff.png"]= { + ["Art/2DArt/SkillIcons/passives/clustersLinknode2.png"]= { ["x"]= 182, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/blockstr.png"]= { + ["Art/2DArt/SkillIcons/passives/colddamage.png"]= { ["x"]= 208, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/castavoidinterruption.png"]= { + ["Art/2DArt/SkillIcons/passives/coldresist.png"]= { ["x"]= 234, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/castspeed.png"]= { + ["Art/2DArt/SkillIcons/passives/criticalbow.png"]= { ["x"]= 260, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/chargedex.png"]= { + ["Art/2DArt/SkillIcons/passives/criticalclaw.png"]= { ["x"]= 286, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/chargeint.png"]= { + ["Art/2DArt/SkillIcons/passives/criticaldaggerdex.png"]= { ["x"]= 312, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/chargestr.png"]= { + ["Art/2DArt/SkillIcons/passives/criticaldaggerint.png"]= { ["x"]= 338, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/clawmasterydex.png"]= { + ["Art/2DArt/SkillIcons/passives/criticalstrikechance.png"]= { ["x"]= 364, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/clustersLinknode1.png"]= { + ["Art/2DArt/SkillIcons/passives/criticalstrikechance2.png"]= { ["x"]= 390, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/clustersLinknode2.png"]= { + ["Art/2DArt/SkillIcons/passives/criticalstrikemultiplier.png"]= { ["x"]= 416, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/colddamage.png"]= { + ["Art/2DArt/SkillIcons/passives/criticalstrikemultiplier2.png"]= { ["x"]= 442, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/coldresist.png"]= { + ["Art/2DArt/SkillIcons/passives/critstrchnc.png"]= { ["x"]= 468, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/criticalbow.png"]= { + ["Art/2DArt/SkillIcons/passives/crystalskin.png"]= { ["x"]= 494, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/criticalclaw.png"]= { + ["Art/2DArt/SkillIcons/passives/damage.png"]= { ["x"]= 520, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/criticaldaggerdex.png"]= { + ["Art/2DArt/SkillIcons/passives/damage_blue.png"]= { ["x"]= 546, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/criticaldaggerint.png"]= { + ["Art/2DArt/SkillIcons/passives/damageaxe.png"]= { ["x"]= 572, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/criticalstrikechance.png"]= { + ["Art/2DArt/SkillIcons/passives/damagedualwield.png"]= { ["x"]= 598, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/criticalstrikechance2.png"]= { + ["Art/2DArt/SkillIcons/passives/damagedualwieldgreen.png"]= { ["x"]= 624, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/criticalstrikemultiplier.png"]= { + ["Art/2DArt/SkillIcons/passives/damagemelee.png"]= { ["x"]= 650, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/criticalstrikemultiplier2.png"]= { + ["Art/2DArt/SkillIcons/passives/damagespells.png"]= { ["x"]= 676, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/critstrchnc.png"]= { + ["Art/2DArt/SkillIcons/passives/damagestaff.png"]= { ["x"]= 702, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/crystalskin.png"]= { + ["Art/2DArt/SkillIcons/passives/damagesword.png"]= { ["x"]= 728, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/damage.png"]= { + ["Art/2DArt/SkillIcons/passives/dmgreduction.png"]= { ["x"]= 754, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/damage_blue.png"]= { + ["Art/2DArt/SkillIcons/passives/dualwieldaccuracy.png"]= { ["x"]= 780, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/damageaxe.png"]= { + ["Art/2DArt/SkillIcons/passives/dualwieldblock.png"]= { ["x"]= 806, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/damagedualwield.png"]= { + ["Art/2DArt/SkillIcons/passives/elementaldamage.png"]= { ["x"]= 832, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/damagedualwieldgreen.png"]= { + ["Art/2DArt/SkillIcons/passives/energyshield.png"]= { ["x"]= 858, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/damagemelee.png"]= { + ["Art/2DArt/SkillIcons/passives/evade.png"]= { ["x"]= 884, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/damagespells.png"]= { + ["Art/2DArt/SkillIcons/passives/evadepercentage.png"]= { ["x"]= 910, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/damagestaff.png"]= { + ["Art/2DArt/SkillIcons/passives/evasion.png"]= { ["x"]= 936, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/damagesword.png"]= { + ["Art/2DArt/SkillIcons/passives/firedamage.png"]= { + ["x"]= 962, + ["y"]= 234, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/firedamageint.png"]= { ["x"]= 0, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/dmgreduction.png"]= { + ["Art/2DArt/SkillIcons/passives/firedamagestr.png"]= { ["x"]= 26, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/dualwieldaccuracy.png"]= { + ["Art/2DArt/SkillIcons/passives/fireresist.png"]= { ["x"]= 52, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/dualwieldblock.png"]= { + ["Art/2DArt/SkillIcons/passives/flaskdex.png"]= { ["x"]= 78, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/elementaldamage.png"]= { + ["Art/2DArt/SkillIcons/passives/flaskint.png"]= { ["x"]= 104, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/energyshield.png"]= { + ["Art/2DArt/SkillIcons/passives/flaskstr.png"]= { ["x"]= 130, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/evade.png"]= { + ["Art/2DArt/SkillIcons/passives/increased armor.png"]= { ["x"]= 156, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/evadepercentage.png"]= { + ["Art/2DArt/SkillIcons/passives/increasedarmorandlife.png"]= { ["x"]= 182, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/evasion.png"]= { + ["Art/2DArt/SkillIcons/passives/increasedrunspeeddex.png"]= { ["x"]= 208, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/firedamage.png"]= { + ["Art/2DArt/SkillIcons/passives/innerforce.png"]= { ["x"]= 234, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/firedamageint.png"]= { + ["Art/2DArt/SkillIcons/passives/knockback.png"]= { ["x"]= 260, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/firedamagestr.png"]= { + ["Art/2DArt/SkillIcons/passives/life1.png"]= { ["x"]= 286, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/fireresist.png"]= { + ["Art/2DArt/SkillIcons/passives/lifegainpertarget.png"]= { ["x"]= 312, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/flaskdex.png"]= { + ["Art/2DArt/SkillIcons/passives/lifeleech.png"]= { ["x"]= 338, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/flaskint.png"]= { + ["Art/2DArt/SkillIcons/passives/lifemana.png"]= { ["x"]= 364, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/flaskstr.png"]= { + ["Art/2DArt/SkillIcons/passives/lifepercentage.png"]= { ["x"]= 390, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/increased armor.png"]= { + ["Art/2DArt/SkillIcons/passives/lightningdex.png"]= { ["x"]= 416, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/increasedarmorandlife.png"]= { + ["Art/2DArt/SkillIcons/passives/lightningint.png"]= { ["x"]= 442, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/increasedrunspeeddex.png"]= { + ["Art/2DArt/SkillIcons/passives/lightningstr.png"]= { ["x"]= 468, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/innerforce.png"]= { + ["Art/2DArt/SkillIcons/passives/macecritdmgspeed.png"]= { ["x"]= 494, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/knockback.png"]= { + ["Art/2DArt/SkillIcons/passives/macedmg.png"]= { ["x"]= 520, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/life1.png"]= { + ["Art/2DArt/SkillIcons/passives/mana.png"]= { ["x"]= 546, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/lifegainpertarget.png"]= { + ["Art/2DArt/SkillIcons/passives/manaregeneration.png"]= { ["x"]= 572, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/lifeleech.png"]= { + ["Art/2DArt/SkillIcons/passives/manareservationreduction.png"]= { ["x"]= 598, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/lifemana.png"]= { + ["Art/2DArt/SkillIcons/passives/manastr.png"]= { ["x"]= 624, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/lifepercentage.png"]= { + ["Art/2DArt/SkillIcons/passives/masterydaggerdex.png"]= { ["x"]= 650, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/lightningdex.png"]= { + ["Art/2DArt/SkillIcons/passives/masterysword.png"]= { ["x"]= 676, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/lightningint.png"]= { + ["Art/2DArt/SkillIcons/passives/masterywand.png"]= { ["x"]= 702, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/lightningstr.png"]= { + ["Art/2DArt/SkillIcons/passives/meleeattackspeed.png"]= { ["x"]= 728, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/macecritdmgspeed.png"]= { + ["Art/2DArt/SkillIcons/passives/minionattackspeed.png"]= { ["x"]= 754, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/macedmg.png"]= { + ["Art/2DArt/SkillIcons/passives/minionblockchance.png"]= { ["x"]= 780, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/mana.png"]= { + ["Art/2DArt/SkillIcons/passives/miniondamage.png"]= { ["x"]= 806, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/manaregeneration.png"]= { + ["Art/2DArt/SkillIcons/passives/miniondamageBlue.png"]= { ["x"]= 832, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/manareservationreduction.png"]= { + ["Art/2DArt/SkillIcons/passives/minionlife.png"]= { ["x"]= 858, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/manastr.png"]= { + ["Art/2DArt/SkillIcons/passives/onehanddamage.png"]= { ["x"]= 884, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/masterydaggerdex.png"]= { + ["Art/2DArt/SkillIcons/passives/onehandspeed.png"]= { ["x"]= 910, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/masterysword.png"]= { + ["Art/2DArt/SkillIcons/passives/plusdexterity.png"]= { ["x"]= 936, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/masterywand.png"]= { + ["Art/2DArt/SkillIcons/passives/plusintelligence.png"]= { + ["x"]= 962, + ["y"]= 260, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/plusintelligencedexterity.png"]= { ["x"]= 0, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/meleeattackspeed.png"]= { + ["Art/2DArt/SkillIcons/passives/plusstrength.png"]= { ["x"]= 26, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/minionattackspeed.png"]= { + ["Art/2DArt/SkillIcons/passives/plusstrengthdexterity.png"]= { ["x"]= 52, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/minionblockchance.png"]= { + ["Art/2DArt/SkillIcons/passives/plusstrengthintelligence.png"]= { ["x"]= 78, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/miniondamage.png"]= { + ["Art/2DArt/SkillIcons/passives/projectilespeed.png"]= { ["x"]= 104, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/miniondamageBlue.png"]= { + ["Art/2DArt/SkillIcons/passives/shieldblock.png"]= { ["x"]= 130, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/minionlife.png"]= { + ["Art/2DArt/SkillIcons/passives/skillduration.png"]= { ["x"]= 156, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/onehanddamage.png"]= { + ["Art/2DArt/SkillIcons/passives/spellcritical.png"]= { ["x"]= 182, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/onehandspeed.png"]= { + ["Art/2DArt/SkillIcons/passives/staffaccuracy.png"]= { ["x"]= 208, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/plusdexterity.png"]= { + ["Art/2DArt/SkillIcons/passives/staffspeed.png"]= { ["x"]= 234, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/plusintelligence.png"]= { + ["Art/2DArt/SkillIcons/passives/stundex.png"]= { ["x"]= 260, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/plusintelligencedexterity.png"]= { + ["Art/2DArt/SkillIcons/passives/stunmace.png"]= { ["x"]= 286, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/plusstrength.png"]= { + ["Art/2DArt/SkillIcons/passives/stunstr.png"]= { ["x"]= 312, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/plusstrengthdexterity.png"]= { + ["Art/2DArt/SkillIcons/passives/tempdex.png"]= { ["x"]= 338, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/plusstrengthintelligence.png"]= { + ["Art/2DArt/SkillIcons/passives/tempint.png"]= { ["x"]= 364, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/projectilespeed.png"]= { + ["Art/2DArt/SkillIcons/passives/totemandbrandattackspeed.png"]= { ["x"]= 390, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/shieldblock.png"]= { + ["Art/2DArt/SkillIcons/passives/totemandbranddamage.png"]= { ["x"]= 416, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/skillduration.png"]= { + ["Art/2DArt/SkillIcons/passives/totemandbrandrange.png"]= { ["x"]= 442, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/spellcritical.png"]= { + ["Art/2DArt/SkillIcons/passives/totemattackspeed.png"]= { ["x"]= 468, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/staffaccuracy.png"]= { + ["Art/2DArt/SkillIcons/passives/totemlife.png"]= { ["x"]= 494, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/staffspeed.png"]= { + ["Art/2DArt/SkillIcons/passives/trapcriticalstrike.png"]= { ["x"]= 520, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/stundex.png"]= { + ["Art/2DArt/SkillIcons/passives/trapdamage.png"]= { ["x"]= 546, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/stunmace.png"]= { + ["Art/2DArt/SkillIcons/passives/trapsduration.png"]= { ["x"]= 572, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/stunstr.png"]= { + ["Art/2DArt/SkillIcons/passives/trapsradius.png"]= { ["x"]= 598, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/tempdex.png"]= { + ["Art/2DArt/SkillIcons/passives/trapsspeed.png"]= { ["x"]= 624, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/tempint.png"]= { + ["Art/2DArt/SkillIcons/passives/weaponelementaldamagepercentage.png"]= { ["x"]= 650, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/totemandbrandattackspeed.png"]= { + ["Art/2DArt/SkillIcons/ArohonguiTribeSkill.png"]= { ["x"]= 676, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/totemandbranddamage.png"]= { + ["Art/2DArt/SkillIcons/HinekoraTribeSkill.png"]= { ["x"]= 702, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/totemandbrandrange.png"]= { + ["Art/2DArt/SkillIcons/KitavaTribeSkill.png"]= { ["x"]= 728, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/totemattackspeed.png"]= { + ["Art/2DArt/SkillIcons/NgamahuTribeSkill.png"]= { ["x"]= 754, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/totemlife.png"]= { + ["Art/2DArt/SkillIcons/RamakoTribeSkill.png"]= { ["x"]= 780, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/trapcriticalstrike.png"]= { + ["Art/2DArt/SkillIcons/RongokuraiTribeSkill.png"]= { ["x"]= 806, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/trapdamage.png"]= { + ["Art/2DArt/SkillIcons/TasalioTribeSkill.png"]= { ["x"]= 832, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/trapsduration.png"]= { + ["Art/2DArt/SkillIcons/TawhoaTribeSkill.png"]= { ["x"]= 858, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/trapsradius.png"]= { + ["Art/2DArt/SkillIcons/TukohamaTribeSkill.png"]= { ["x"]= 884, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/trapsspeed.png"]= { + ["Art/2DArt/SkillIcons/ValakoTribeSkill.png"]= { ["x"]= 910, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/weaponelementaldamagepercentage.png"]= { + ["Art/2DArt/SkillIcons/passives/HinekoraPassiveIcon1.png"]= { ["x"]= 936, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/ArohonguiTribeSkill.png"]= { - ["x"]= 0, - ["y"]= 312, - ["w"]= 26, - ["h"]= 26 - }, - ["Art/2DArt/SkillIcons/HinekoraTribeSkill.png"]= { - ["x"]= 26, - ["y"]= 312, - ["w"]= 26, - ["h"]= 26 - }, - ["Art/2DArt/SkillIcons/KitavaTribeSkill.png"]= { - ["x"]= 52, - ["y"]= 312, - ["w"]= 26, - ["h"]= 26 - }, - ["Art/2DArt/SkillIcons/NgamahuTribeSkill.png"]= { - ["x"]= 78, - ["y"]= 312, - ["w"]= 26, - ["h"]= 26 - }, - ["Art/2DArt/SkillIcons/RamakoTribeSkill.png"]= { - ["x"]= 104, - ["y"]= 312, - ["w"]= 26, - ["h"]= 26 - }, - ["Art/2DArt/SkillIcons/RongokuraiTribeSkill.png"]= { - ["x"]= 130, - ["y"]= 312, - ["w"]= 26, - ["h"]= 26 - }, - ["Art/2DArt/SkillIcons/TasalioTribeSkill.png"]= { - ["x"]= 156, - ["y"]= 312, - ["w"]= 26, - ["h"]= 26 - }, - ["Art/2DArt/SkillIcons/TawhoaTribeSkill.png"]= { - ["x"]= 182, - ["y"]= 312, - ["w"]= 26, - ["h"]= 26 - }, - ["Art/2DArt/SkillIcons/TukohamaTribeSkill.png"]= { - ["x"]= 208, - ["y"]= 312, - ["w"]= 26, - ["h"]= 26 - }, - ["Art/2DArt/SkillIcons/ValakoTribeSkill.png"]= { - ["x"]= 234, - ["y"]= 312, - ["w"]= 26, - ["h"]= 26 - }, - ["Art/2DArt/SkillIcons/passives/HinekoraPassiveIcon1.png"]= { - ["x"]= 260, - ["y"]= 312, - ["w"]= 26, - ["h"]= 26 - }, ["Art/2DArt/SkillIcons/passives/HinekoraPassiveIcon2.png"]= { - ["x"]= 286, - ["y"]= 312, + ["x"]= 962, + ["y"]= 286, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/HinekoraPassiveIcon3.png"]= { - ["x"]= 312, + ["x"]= 0, ["y"]= 312, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/SkillscostingLifenode.png"]= { - ["x"]= 338, + ["x"]= 26, ["y"]= 312, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/accuracyint.png"]= { - ["x"]= 364, + ["x"]= 52, ["y"]= 312, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/totemandbrandlife.png"]= { - ["x"]= 390, + ["x"]= 78, ["y"]= 312, ["w"]= 26, ["h"]= 26 @@ -2813,8 +2813,8 @@ return { } }, ["notableActive"]= { - ["filename"]= "https://web.poecdn.com/image/passive-skill/skills-3.jpg?24c5e3b9", - ["w"]= 962, + ["filename"]= "https://web.poecdn.com/image/passive-skill/skills-3.jpg?b1b66a3b", + ["w"]= 999, ["h"]= 1459, ["coords"]= { ["Art/2DArt/SkillIcons/passives/2handeddamage.png"]= { @@ -2974,3871 +2974,3997 @@ return { ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/Assassin/DeadlyInfusion.png"]= { - ["x"]= 0, - ["y"]= 375, + ["x"]= 962, + ["y"]= 338, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/Assassin/Elusive.png"]= { - ["x"]= 37, + ["x"]= 0, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/Assassin/NoxiousStrike.png"]= { - ["x"]= 74, + ["x"]= 37, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/Assassin/ToxicDelivery.png"]= { - ["x"]= 111, + ["x"]= 74, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/Assassin/UnstableInfusion.png"]= { - ["x"]= 148, + ["x"]= 111, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/AssassinAnointNotable.png"]= { - ["x"]= 185, + ["x"]= 148, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/AtlasTrees/AulBloodlineNotable.png"]= { - ["x"]= 222, + ["x"]= 185, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/AtlasTrees/BestiaryNotable4.png"]= { - ["x"]= 259, + ["x"]= 222, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/AtlasTrees/BloodLineOlrothNotable.png"]= { - ["x"]= 296, + ["x"]= 259, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/AtlasTrees/BoldUndertaking.png"]= { - ["x"]= 333, + ["x"]= 296, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/AtlasTrees/BreachNotable4.png"]= { - ["x"]= 370, + ["x"]= 333, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/AtlasTrees/DeliriumNotable1.png"]= { - ["x"]= 407, + ["x"]= 370, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/AtlasTrees/FarrulNotable1.png"]= { - ["x"]= 444, + ["x"]= 407, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/AtlasTrees/HarbingerNode1.png"]= { - ["x"]= 481, + ["x"]= 444, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/AtlasTrees/LyciaNotable1.png"]= { - ["x"]= 518, + ["x"]= 481, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/AtlasTrees/MorePrimalWisps.png"]= { - ["x"]= 555, + ["x"]= 518, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/AtlasTrees/MoreVividWisps.png"]= { - ["x"]= 592, + ["x"]= 555, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/AtlasTrees/MoreWildWisps.png"]= { - ["x"]= 629, + ["x"]= 592, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/AtlasTrees/TempestNotable1.png"]= { - ["x"]= 666, + ["x"]= 629, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/AtlasTrees/UltimatumNotable3.png"]= { - ["x"]= 703, + ["x"]= 666, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/AtlasTrees/UltimatumNotable4.png"]= { - ["x"]= 740, + ["x"]= 703, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/AttackBlindNotable.png"]= { - ["x"]= 777, + ["x"]= 740, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/AttackDamangeAndEvasionNotableIcon.png"]= { - ["x"]= 814, + ["x"]= 777, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/AttackPoisonNotable.png"]= { - ["x"]= 851, + ["x"]= 814, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/AuraEffectNotable.png"]= { - ["x"]= 888, + ["x"]= 851, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/AuraReservationNotable.png"]= { - ["x"]= 925, + ["x"]= 888, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/AvataroftheHunt2.png"]= { - ["x"]= 0, - ["y"]= 412, + ["x"]= 925, + ["y"]= 375, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/AvoidInterruptionFromCastingNotable.png"]= { - ["x"]= 37, - ["y"]= 412, + ["x"]= 962, + ["y"]= 375, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/AxeNotable1.png"]= { - ["x"]= 74, + ["x"]= 0, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/AxeNotable2.png"]= { - ["x"]= 111, + ["x"]= 37, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/AxeandSwordDamage.png"]= { - ["x"]= 148, + ["x"]= 74, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/AxesandAttackSpeed.png"]= { - ["x"]= 185, + ["x"]= 111, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/BannerAreaNotable.png"]= { - ["x"]= 222, + ["x"]= 148, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/BannerDurationNotable.png"]= { - ["x"]= 259, + ["x"]= 185, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/BannerEffectNotable.png"]= { - ["x"]= 296, + ["x"]= 222, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/BannerResourceAreaNotable.png"]= { - ["x"]= 333, + ["x"]= 259, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/BannersNotable.png"]= { - ["x"]= 370, + ["x"]= 296, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/BarragingProjectilesNotable.png"]= { - ["x"]= 407, + ["x"]= 333, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/BattleRouse.png"]= { - ["x"]= 444, + ["x"]= 370, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/Berserker/AspectOfCarnage.png"]= { - ["x"]= 481, + ["x"]= 407, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/Berserker/Blitz.png"]= { - ["x"]= 518, + ["x"]= 444, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/Berserker/CloakedAgony.png"]= { - ["x"]= 555, + ["x"]= 481, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/Berserker/CombatFrenzy.png"]= { - ["x"]= 592, + ["x"]= 518, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/Berserker/DefyPain.png"]= { - ["x"]= 629, + ["x"]= 555, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/Berserker/RiteOfRuin.png"]= { - ["x"]= 666, + ["x"]= 592, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/Berserker/WarBringer.png"]= { - ["x"]= 703, + ["x"]= 629, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/BeserkerAnointNotable.png"]= { - ["x"]= 740, + ["x"]= 666, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/BladeBarrierNotable.png"]= { - ["x"]= 777, + ["x"]= 703, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/BleedPoison.png"]= { - ["x"]= 814, + ["x"]= 740, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/BleedPoisonMitigateNotable.png"]= { - ["x"]= 851, + ["x"]= 777, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/BleedingNotable1.png"]= { - ["x"]= 888, + ["x"]= 814, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/BleedingNotable2.png"]= { - ["x"]= 925, + ["x"]= 851, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/BlockAttackDmgNotable.png"]= { + ["x"]= 888, + ["y"]= 412, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/BlockSpellDmgNotable.png"]= { + ["x"]= 925, + ["y"]= 412, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Blood2.png"]= { + ["x"]= 962, + ["y"]= 412, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/BloodPact.png"]= { ["x"]= 0, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/BlockSpellDmgNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/BloodSiphon.png"]= { ["x"]= 37, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Blood2.png"]= { + ["Art/2DArt/SkillIcons/passives/BloodyBludgeon.png"]= { ["x"]= 74, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/BloodPact.png"]= { + ["Art/2DArt/SkillIcons/passives/Boomerang.png"]= { ["x"]= 111, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/BloodSiphon.png"]= { + ["Art/2DArt/SkillIcons/passives/BowDamage.png"]= { ["x"]= 148, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/BloodyBludgeon.png"]= { + ["Art/2DArt/SkillIcons/passives/Brand2.png"]= { ["x"]= 185, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Boomerang.png"]= { + ["Art/2DArt/SkillIcons/passives/Brand4.png"]= { ["x"]= 222, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/BowDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/BrandDmgNotable.png"]= { ["x"]= 259, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Brand2.png"]= { + ["Art/2DArt/SkillIcons/passives/BreathofFlames2.png"]= { ["x"]= 296, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Brand4.png"]= { + ["Art/2DArt/SkillIcons/passives/BreathofLightening2.png"]= { ["x"]= 333, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/BrandDmgNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/BreathofRime2.png"]= { ["x"]= 370, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/BreathofFlames2.png"]= { + ["Art/2DArt/SkillIcons/passives/ByTheBlade.png"]= { ["x"]= 407, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/BreathofLightening2.png"]= { + ["Art/2DArt/SkillIcons/passives/CelestialPunishment.png"]= { ["x"]= 444, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/BreathofRime2.png"]= { + ["Art/2DArt/SkillIcons/passives/ChainingProjectiles.png"]= { ["x"]= 481, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ByTheBlade.png"]= { + ["Art/2DArt/SkillIcons/passives/Champion.png"]= { ["x"]= 518, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/CelestialPunishment.png"]= { + ["Art/2DArt/SkillIcons/passives/Champion/FirstStrikeLastFall.png"]= { ["x"]= 555, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ChainingProjectiles.png"]= { + ["Art/2DArt/SkillIcons/passives/Champion/Fortitude.png"]= { ["x"]= 592, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Champion.png"]= { + ["Art/2DArt/SkillIcons/passives/Champion/ImpalePassiveNotable.png"]= { ["x"]= 629, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Champion/FirstStrikeLastFall.png"]= { + ["Art/2DArt/SkillIcons/passives/Champion/Inpirational.png"]= { ["x"]= 666, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Champion/Fortitude.png"]= { + ["Art/2DArt/SkillIcons/passives/Champion/Unstopable.png"]= { ["x"]= 703, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Champion/ImpalePassiveNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Champion/WorthyCauses.png"]= { ["x"]= 740, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Champion/Inpirational.png"]= { + ["Art/2DArt/SkillIcons/passives/Champion/WorthyFoe.png"]= { ["x"]= 777, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Champion/Unstopable.png"]= { + ["Art/2DArt/SkillIcons/passives/ChampionAnointNotable.png"]= { ["x"]= 814, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Champion/WorthyCauses.png"]= { + ["Art/2DArt/SkillIcons/passives/ChaosDamage2.png"]= { ["x"]= 851, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Champion/WorthyFoe.png"]= { + ["Art/2DArt/SkillIcons/passives/ChaosDamageOverTimeNotable.png"]= { ["x"]= 888, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ChampionAnointNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/ChaosDamageOverTimeNotable2.png"]= { ["x"]= 925, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ChaosDamage2.png"]= { + ["Art/2DArt/SkillIcons/passives/ChaosResistNotable.png"]= { + ["x"]= 962, + ["y"]= 449, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ChaoticPotential.png"]= { ["x"]= 0, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ChaosDamageOverTimeNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/CheiftainAnointNotable.png"]= { ["x"]= 37, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ChaosDamageOverTimeNotable2.png"]= { + ["Art/2DArt/SkillIcons/passives/Chieftain/ArohunguiMoonsPresenceWarcry.png"]= { ["x"]= 74, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ChaosResistNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Chieftain/HinekoraDeathsFury.png"]= { ["x"]= 111, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ChaoticPotential.png"]= { + ["Art/2DArt/SkillIcons/passives/Chieftain/NgamahuFlamesAdvance.png"]= { ["x"]= 148, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/CheiftainAnointNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Chieftain/RamakoSunsLight.png"]= { ["x"]= 185, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Chieftain/ArohunguiMoonsPresenceWarcry.png"]= { + ["Art/2DArt/SkillIcons/passives/Chieftain/TasalioCleansingWater.png"]= { ["x"]= 222, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Chieftain/HinekoraDeathsFury.png"]= { + ["Art/2DArt/SkillIcons/passives/Chieftain/TukomahaWarsHerald.png"]= { ["x"]= 259, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Chieftain/NgamahuFlamesAdvance.png"]= { + ["Art/2DArt/SkillIcons/passives/Chieftain/ValakoStormsEmbrace.png"]= { ["x"]= 296, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Chieftain/RamakoSunsLight.png"]= { + ["Art/2DArt/SkillIcons/passives/ChillThemedNotable.png"]= { ["x"]= 333, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Chieftain/TasalioCleansingWater.png"]= { + ["Art/2DArt/SkillIcons/passives/ClawNotable1.png"]= { ["x"]= 370, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Chieftain/TukomahaWarsHerald.png"]= { + ["Art/2DArt/SkillIcons/passives/ClawNotable2.png"]= { ["x"]= 407, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Chieftain/ValakoStormsEmbrace.png"]= { + ["Art/2DArt/SkillIcons/passives/ClawsOfTheMagpie.png"]= { ["x"]= 444, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ChillThemedNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/CleverThief.png"]= { ["x"]= 481, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ClawNotable1.png"]= { + ["Art/2DArt/SkillIcons/passives/ColdAndFireHybridNotable.png"]= { ["x"]= 518, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ClawNotable2.png"]= { + ["Art/2DArt/SkillIcons/passives/ColdDamageEnemyNotable.png"]= { ["x"]= 555, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ClawsOfTheMagpie.png"]= { + ["Art/2DArt/SkillIcons/passives/ColdDamageOverTimeNotable.png"]= { ["x"]= 592, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/CleverThief.png"]= { + ["Art/2DArt/SkillIcons/passives/ColdResistNotable.png"]= { ["x"]= 629, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ColdAndFireHybridNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/ColdWeaponDmg.png"]= { ["x"]= 666, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ColdDamageEnemyNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/ColdheartedCalculation2.png"]= { ["x"]= 703, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ColdDamageOverTimeNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/CombatFocusNotable.png"]= { ["x"]= 740, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ColdResistNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/CombatStamina.png"]= { ["x"]= 777, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ColdWeaponDmg.png"]= { + ["Art/2DArt/SkillIcons/passives/CommandofSteel.png"]= { ["x"]= 814, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ColdheartedCalculation2.png"]= { + ["Art/2DArt/SkillIcons/passives/Constitution.png"]= { ["x"]= 851, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/CombatFocusNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Coordination.png"]= { ["x"]= 888, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/CombatStamina.png"]= { + ["Art/2DArt/SkillIcons/passives/CorpsesNotable.png"]= { ["x"]= 925, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/CommandofSteel.png"]= { + ["Art/2DArt/SkillIcons/passives/Corruption.png"]= { + ["x"]= 962, + ["y"]= 486, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/CritStrikeBleedingNotable.png"]= { ["x"]= 0, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Constitution.png"]= { + ["Art/2DArt/SkillIcons/passives/CurseAreaOfEffectNotable.png"]= { ["x"]= 37, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Coordination.png"]= { + ["Art/2DArt/SkillIcons/passives/CurseEffectNotable.png"]= { ["x"]= 74, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/CorpsesNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/CurseNotable.png"]= { ["x"]= 111, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Corruption.png"]= { + ["Art/2DArt/SkillIcons/passives/CurseNotable2.png"]= { ["x"]= 148, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/CritStrikeBleedingNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/CursemitigationclusterNotable.png"]= { ["x"]= 185, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/CurseAreaOfEffectNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/DaggerNotable1.png"]= { ["x"]= 222, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/CurseEffectNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/DaggerandClawDamage.png"]= { ["x"]= 259, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/CurseNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/DamageOverTimeNotable.png"]= { ["x"]= 296, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/CurseNotable2.png"]= { + ["Art/2DArt/SkillIcons/passives/DamageofMinionsNotable.png"]= { ["x"]= 333, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/CursemitigationclusterNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/DarkestHour.png"]= { ["x"]= 370, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DaggerNotable1.png"]= { + ["Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeFrenzyChargeNotable.png"]= { ["x"]= 407, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DaggerandClawDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/DeadEye/FarShot.png"]= { ["x"]= 444, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DamageOverTimeNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/DeadEye/GatherWinds.png"]= { ["x"]= 481, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DamageofMinionsNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/DeadEye/Ricochet.png"]= { ["x"]= 518, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DarkestHour.png"]= { + ["Art/2DArt/SkillIcons/passives/DeadeyeAnointNotable.png"]= { ["x"]= 555, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeFrenzyChargeNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/DeepBreathsNotable.png"]= { ["x"]= 592, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DeadEye/FarShot.png"]= { + ["Art/2DArt/SkillIcons/passives/DiamondSkin2.png"]= { ["x"]= 629, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DeadEye/GatherWinds.png"]= { + ["Art/2DArt/SkillIcons/passives/DireTorment.png"]= { ["x"]= 666, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DeadEye/Ricochet.png"]= { + ["Art/2DArt/SkillIcons/passives/DivineFury.png"]= { ["x"]= 703, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DeadeyeAnointNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/DivineWrath.png"]= { ["x"]= 740, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DeepBreathsNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/DmgHeraldSkillsNotable.png"]= { ["x"]= 777, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DiamondSkin2.png"]= { + ["Art/2DArt/SkillIcons/passives/DmgWhenChannelSkillsNotable.png"]= { ["x"]= 814, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DireTorment.png"]= { + ["Art/2DArt/SkillIcons/passives/DodgeAtksNotable.png"]= { ["x"]= 851, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DivineFury.png"]= { + ["Art/2DArt/SkillIcons/passives/Dreamer.png"]= { ["x"]= 888, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DivineWrath.png"]= { + ["Art/2DArt/SkillIcons/passives/DruidicRite.png"]= { ["x"]= 925, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DmgHeraldSkillsNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/DualWieldNotable.png"]= { + ["x"]= 962, + ["y"]= 523, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/DualWieldingBlockNotable.png"]= { ["x"]= 0, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DmgWhenChannelSkillsNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/DualWieldingDamage.png"]= { ["x"]= 37, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DodgeAtksNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/DurationofMinionsNotable.png"]= { ["x"]= 74, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Dreamer.png"]= { + ["Art/2DArt/SkillIcons/passives/ElementalAilmentResistance.png"]= { ["x"]= 111, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DruidicRite.png"]= { + ["Art/2DArt/SkillIcons/passives/ElementalDamagewithAttacks2.png"]= { ["x"]= 148, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DualWieldNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/ElementalDominion2.png"]= { ["x"]= 185, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DualWieldingBlockNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/ElementalFocus.png"]= { ["x"]= 222, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DualWieldingDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/Elementalist/ChillSpecialisation.png"]= { ["x"]= 259, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DurationofMinionsNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Elementalist/ElemancerIcon.png"]= { ["x"]= 296, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ElementalAilmentResistance.png"]= { + ["Art/2DArt/SkillIcons/passives/Elementalist/IgniteSpecialisation.png"]= { ["x"]= 333, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ElementalDamagewithAttacks2.png"]= { + ["Art/2DArt/SkillIcons/passives/Elementalist/IridescentFlesh.png"]= { ["x"]= 370, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ElementalDominion2.png"]= { + ["Art/2DArt/SkillIcons/passives/Elementalist/LiegeOfThePrimordial.png"]= { ["x"]= 407, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ElementalFocus.png"]= { + ["Art/2DArt/SkillIcons/passives/Elementalist/PendulumOfDestruction.png"]= { ["x"]= 444, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Elementalist/ChillSpecialisation.png"]= { + ["Art/2DArt/SkillIcons/passives/Elementalist/PrimevalForce.png"]= { ["x"]= 481, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Elementalist/ElemancerIcon.png"]= { + ["Art/2DArt/SkillIcons/passives/Elementalist/ShockSpecialisation.png"]= { ["x"]= 518, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Elementalist/IgniteSpecialisation.png"]= { + ["Art/2DArt/SkillIcons/passives/ElementalistAnointNotable.png"]= { ["x"]= 555, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Elementalist/IridescentFlesh.png"]= { + ["Art/2DArt/SkillIcons/passives/EnduranceChargeNotable.png"]= { ["x"]= 592, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Elementalist/LiegeOfThePrimordial.png"]= { + ["Art/2DArt/SkillIcons/passives/EnergyShieldNotable.png"]= { ["x"]= 629, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Elementalist/PendulumOfDestruction.png"]= { + ["Art/2DArt/SkillIcons/passives/Entropy.png"]= { ["x"]= 666, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Elementalist/PrimevalForce.png"]= { + ["Art/2DArt/SkillIcons/passives/EscalationNotable.png"]= { ["x"]= 703, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Elementalist/ShockSpecialisation.png"]= { + ["Art/2DArt/SkillIcons/passives/EssenceSurge.png"]= { ["x"]= 740, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ElementalistAnointNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/EvasionAndBlindNotable.png"]= { ["x"]= 777, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/EnduranceChargeNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/EvasionAndPhasingNotable.png"]= { ["x"]= 814, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/EnergyShieldNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/EvasionNotable.png"]= { ["x"]= 851, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Entropy.png"]= { + ["Art/2DArt/SkillIcons/passives/ExceptionalPerformance.png"]= { ["x"]= 888, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/EscalationNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/ExplosiveRunes.png"]= { ["x"]= 925, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/EssenceSurge.png"]= { + ["Art/2DArt/SkillIcons/passives/EyesOfTheDeadly.png"]= { + ["x"]= 962, + ["y"]= 560, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/EyesOfThePowerful.png"]= { ["x"]= 0, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/EvasionAndBlindNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/EyesOfTheSavant.png"]= { ["x"]= 37, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/EvasionAndPhasingNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/FasterBleeding2.png"]= { ["x"]= 74, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/EvasionNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/FatalBlade.png"]= { ["x"]= 111, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ExceptionalPerformance.png"]= { + ["Art/2DArt/SkillIcons/passives/FireAilment.png"]= { ["x"]= 148, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ExplosiveRunes.png"]= { + ["Art/2DArt/SkillIcons/passives/FireDamageOverTimeNotable.png"]= { ["x"]= 185, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/EyesOfTheDeadly.png"]= { + ["Art/2DArt/SkillIcons/passives/FireResistNotable.png"]= { ["x"]= 222, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/EyesOfThePowerful.png"]= { + ["Art/2DArt/SkillIcons/passives/FlaskDuration.png"]= { ["x"]= 259, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/EyesOfTheSavant.png"]= { + ["Art/2DArt/SkillIcons/passives/FlaskNotableCritStrikeRecharge.png"]= { ["x"]= 296, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/FasterBleeding2.png"]= { + ["Art/2DArt/SkillIcons/passives/FlaskNotableFlasksLastLonger.png"]= { ["x"]= 333, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/FatalBlade.png"]= { + ["Art/2DArt/SkillIcons/passives/ForceOfNature.png"]= { ["x"]= 370, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/FireAilment.png"]= { + ["Art/2DArt/SkillIcons/passives/ForkingProjectilesNotable.png"]= { ["x"]= 407, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/FireDamageOverTimeNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/FortifyNotable1.png"]= { ["x"]= 444, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/FireResistNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/FortifyNotable2.png"]= { ["x"]= 481, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/FlaskDuration.png"]= { + ["Art/2DArt/SkillIcons/passives/FrenzyChargeNotable.png"]= { ["x"]= 518, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/FlaskNotableCritStrikeRecharge.png"]= { + ["Art/2DArt/SkillIcons/passives/GenericBlockNotable1.png"]= { ["x"]= 555, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/FlaskNotableFlasksLastLonger.png"]= { + ["Art/2DArt/SkillIcons/passives/GenericBlockNotable2.png"]= { ["x"]= 592, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ForceOfNature.png"]= { + ["Art/2DArt/SkillIcons/passives/GenericSpellBlockNotable.png"]= { ["x"]= 629, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ForkingProjectilesNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Gladiator/GLADBloodAndSand.png"]= { ["x"]= 666, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/FortifyNotable1.png"]= { + ["Art/2DArt/SkillIcons/passives/Gladiator/GLADBloodInEyes.png"]= { ["x"]= 703, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/FortifyNotable2.png"]= { + ["Art/2DArt/SkillIcons/passives/Gladiator/GLADPainForged.png"]= { ["x"]= 740, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/FrenzyChargeNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Gladiator/GLADVersitileCombatant.png"]= { ["x"]= 777, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/GenericBlockNotable1.png"]= { + ["Art/2DArt/SkillIcons/passives/Gladiator/GLADViolence.png"]= { ["x"]= 814, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/GenericBlockNotable2.png"]= { + ["Art/2DArt/SkillIcons/passives/Gladiator/GLADViolentRetaliation.png"]= { ["x"]= 851, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/GenericSpellBlockNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Gladiator/GladiatorDualWiledSwordAxeNotable.png"]= { ["x"]= 888, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Gladiator/GLADBloodAndSand.png"]= { + ["Art/2DArt/SkillIcons/passives/GladiatorAnointNotable.png"]= { ["x"]= 925, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Gladiator/GLADBloodInEyes.png"]= { + ["Art/2DArt/SkillIcons/passives/GolemsNotable.png"]= { + ["x"]= 962, + ["y"]= 597, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/GreenProjectileAttackNotable.png"]= { ["x"]= 0, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Gladiator/GLADPainForged.png"]= { + ["Art/2DArt/SkillIcons/passives/GrowthandDecay.png"]= { ["x"]= 37, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Gladiator/GLADVersitileCombatant.png"]= { + ["Art/2DArt/SkillIcons/passives/Guardian/GuardianHallowingFlameNotable.png"]= { ["x"]= 74, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Gladiator/GLADViolence.png"]= { + ["Art/2DArt/SkillIcons/passives/Guardian/HarmonyOfPurpose.png"]= { ["x"]= 111, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Gladiator/GLADViolentRetaliation.png"]= { + ["Art/2DArt/SkillIcons/passives/Guardian/Radient Crusade.png"]= { ["x"]= 148, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Gladiator/GladiatorDualWiledSwordAxeNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Guardian/RadientFaith.png"]= { ["x"]= 185, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/GladiatorAnointNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Guardian/ShieldMastery.png"]= { ["x"]= 222, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/GolemsNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Guardian/TimeOfNeed.png"]= { ["x"]= 259, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/GreenProjectileAttackNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Guardian/Unwavering Crusade.png"]= { ["x"]= 296, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/GrowthandDecay.png"]= { + ["Art/2DArt/SkillIcons/passives/Guardian/UnwaveringFaith.png"]= { ["x"]= 333, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Guardian/GuardianHallowingFlameNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/GuardianAnointNotable.png"]= { ["x"]= 370, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Guardian/HarmonyOfPurpose.png"]= { + ["Art/2DArt/SkillIcons/passives/Harrier.png"]= { ["x"]= 407, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Guardian/Radient Crusade.png"]= { + ["Art/2DArt/SkillIcons/passives/HeartandSoul.png"]= { ["x"]= 444, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Guardian/RadientFaith.png"]= { + ["Art/2DArt/SkillIcons/passives/HeartofChaos.png"]= { ["x"]= 481, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Guardian/ShieldMastery.png"]= { + ["Art/2DArt/SkillIcons/passives/HeartoftheOak.png"]= { ["x"]= 518, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Guardian/TimeOfNeed.png"]= { + ["Art/2DArt/SkillIcons/passives/Hearty.png"]= { ["x"]= 555, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Guardian/Unwavering Crusade.png"]= { + ["Art/2DArt/SkillIcons/passives/HeirophantAnointNotable.png"]= { ["x"]= 592, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Guardian/UnwaveringFaith.png"]= { + ["Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.png"]= { ["x"]= 629, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/GuardianAnointNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/HeraldDamageNotable.png"]= { ["x"]= 666, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Harrier.png"]= { + ["Art/2DArt/SkillIcons/passives/HeraldReservation.png"]= { ["x"]= 703, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/HeartandSoul.png"]= { + ["Art/2DArt/SkillIcons/passives/Hierophant/AncestralZeal.png"]= { ["x"]= 740, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/HeartofChaos.png"]= { + ["Art/2DArt/SkillIcons/passives/Hierophant/ArcaneSurge.png"]= { ["x"]= 777, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/HeartoftheOak.png"]= { + ["Art/2DArt/SkillIcons/passives/Hierophant/DiscipleOfRuin.png"]= { ["x"]= 814, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Hearty.png"]= { + ["Art/2DArt/SkillIcons/passives/Hierophant/ItemAugment.png"]= { ["x"]= 851, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/HeirophantAnointNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Hierophant/MindOverBeing.png"]= { ["x"]= 888, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.png"]= { + ["Art/2DArt/SkillIcons/passives/Hierophant/MindOverBody.png"]= { ["x"]= 925, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/HeraldDamageNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Hierophant/SignOfPurpose.png"]= { + ["x"]= 962, + ["y"]= 634, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Hierophant/SpiritualEmpowerment.png"]= { ["x"]= 0, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/HeraldReservation.png"]= { + ["Art/2DArt/SkillIcons/passives/HiredKiller2.png"]= { ["x"]= 37, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Hierophant/AncestralZeal.png"]= { + ["Art/2DArt/SkillIcons/passives/HoldingShieldDamage.png"]= { ["x"]= 74, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Hierophant/ArcaneSurge.png"]= { + ["Art/2DArt/SkillIcons/passives/Hunter.png"]= { ["x"]= 111, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Hierophant/DiscipleOfRuin.png"]= { + ["Art/2DArt/SkillIcons/passives/IgniteAshNotable.png"]= { ["x"]= 148, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Hierophant/ItemAugment.png"]= { + ["Art/2DArt/SkillIcons/passives/IgniteAttackNotable.png"]= { ["x"]= 185, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Hierophant/MindOverBeing.png"]= { + ["Art/2DArt/SkillIcons/passives/IgniteBleedNotable.png"]= { ["x"]= 222, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Hierophant/MindOverBody.png"]= { + ["Art/2DArt/SkillIcons/passives/IgniteStunNotable.png"]= { ["x"]= 259, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Hierophant/SignOfPurpose.png"]= { + ["Art/2DArt/SkillIcons/passives/IgnorePain.png"]= { ["x"]= 296, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Hierophant/SpiritualEmpowerment.png"]= { + ["Art/2DArt/SkillIcons/passives/Impale1HandNotable.png"]= { ["x"]= 333, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/HiredKiller2.png"]= { + ["Art/2DArt/SkillIcons/passives/ImpaleEffectNotable.png"]= { ["x"]= 370, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/HoldingShieldDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/ImpaleNotable1.png"]= { ["x"]= 407, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Hunter.png"]= { + ["Art/2DArt/SkillIcons/passives/ImpaleNotable2.png"]= { ["x"]= 444, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/IgniteAshNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreaseCritChanceNotable.png"]= { ["x"]= 481, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/IgniteAttackNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreaseMinionLifeNotable.png"]= { ["x"]= 518, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/IgniteBleedNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreasedAttackDamageNotable.png"]= { ["x"]= 555, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/IgniteStunNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreasedChaosDamage.png"]= { ["x"]= 592, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/IgnorePain.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreasedColdDamage.png"]= { ["x"]= 629, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Impale1HandNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreasedElementalDamage.png"]= { ["x"]= 666, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ImpaleEffectNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreasedFireDamage.png"]= { ["x"]= 703, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ImpaleNotable1.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreasedLightningDamage.png"]= { ["x"]= 740, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ImpaleNotable2.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreasedManaCostNotable.png"]= { ["x"]= 777, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/IncreaseCritChanceNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreasedMaximumLifeNotable.png"]= { ["x"]= 814, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/IncreaseMinionLifeNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreasedMinionDamageNotable.png"]= { ["x"]= 851, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/IncreasedAttackDamageNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreasedNonDamageAilmentNotable.png"]= { ["x"]= 888, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/IncreasedChaosDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.png"]= { ["x"]= 925, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/IncreasedColdDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreasedSpellDamageNode.png"]= { + ["x"]= 962, + ["y"]= 671, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/IncreasedSpellDamageNotable.png"]= { ["x"]= 0, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/IncreasedElementalDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreasedWarcryNotable.png"]= { ["x"]= 37, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/IncreasedFireDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/InfusedFlesh.png"]= { ["x"]= 74, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/IncreasedLightningDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/InquisitorAnointNotable.png"]= { ["x"]= 111, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/IncreasedManaCostNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Inquistitor/ElementalDomination.png"]= { ["x"]= 148, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/IncreasedMaximumLifeNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Inquistitor/ElementalForce.png"]= { ["x"]= 185, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/IncreasedMinionDamageNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Inquistitor/ElementalMastery.png"]= { ["x"]= 222, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/IncreasedNonDamageAilmentNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Inquistitor/GloryOfTheSavant.png"]= { ["x"]= 259, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/Inquistitor/InstrumentsOfVirtue.png"]= { ["x"]= 296, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/IncreasedSpellDamageNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Inquistitor/InstrumentsofZeal.png"]= { ["x"]= 333, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/IncreasedSpellDamageNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Inquistitor/Sanctify.png"]= { ["x"]= 370, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/IncreasedWarcryNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Inspiration.png"]= { ["x"]= 407, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/InfusedFlesh.png"]= { + ["Art/2DArt/SkillIcons/passives/IntensifyNotable.png"]= { ["x"]= 444, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/InquisitorAnointNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Juggernaut/JuggernautArmourNotable.png"]= { ["x"]= 481, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Inquistitor/ElementalDomination.png"]= { + ["Art/2DArt/SkillIcons/passives/Juggernaut/Unbreakable.png"]= { ["x"]= 518, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Inquistitor/ElementalForce.png"]= { + ["Art/2DArt/SkillIcons/passives/Juggernaut/Undeniable.png"]= { ["x"]= 555, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Inquistitor/ElementalMastery.png"]= { + ["Art/2DArt/SkillIcons/passives/Juggernaut/Unflinching.png"]= { ["x"]= 592, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Inquistitor/GloryOfTheSavant.png"]= { + ["Art/2DArt/SkillIcons/passives/Juggernaut/Unrelenting.png"]= { ["x"]= 629, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Inquistitor/InstrumentsOfVirtue.png"]= { + ["Art/2DArt/SkillIcons/passives/Juggernaut/Unstoppable.png"]= { ["x"]= 666, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Inquistitor/InstrumentsofZeal.png"]= { + ["Art/2DArt/SkillIcons/passives/Juggernaut/Unyielding.png"]= { ["x"]= 703, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Inquistitor/Sanctify.png"]= { + ["Art/2DArt/SkillIcons/passives/JuggernautAnointNotable.png"]= { ["x"]= 740, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Inspiration.png"]= { + ["Art/2DArt/SkillIcons/passives/KeystoneArmourMaster.png"]= { ["x"]= 777, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/IntensifyNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/KeystoneWhispersOfDoom.png"]= { ["x"]= 814, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Juggernaut/JuggernautArmourNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/LifeArmourAndEvasion.png"]= { ["x"]= 851, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Juggernaut/Unbreakable.png"]= { + ["Art/2DArt/SkillIcons/passives/LifeFlasks.png"]= { ["x"]= 888, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Juggernaut/Undeniable.png"]= { + ["Art/2DArt/SkillIcons/passives/LifeGainOnHitNotable.png"]= { ["x"]= 925, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Juggernaut/Unflinching.png"]= { + ["Art/2DArt/SkillIcons/passives/LifeManaFlasksrecovery.png"]= { + ["x"]= 962, + ["y"]= 708, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/LifeRecoupNotable.png"]= { ["x"]= 0, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Juggernaut/Unrelenting.png"]= { + ["Art/2DArt/SkillIcons/passives/LifeRegenerationGainRegenNotable.png"]= { ["x"]= 37, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Juggernaut/Unstoppable.png"]= { + ["Art/2DArt/SkillIcons/passives/LifeRegenerationLowlifeBonusNotable.png"]= { ["x"]= 74, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Juggernaut/Unyielding.png"]= { + ["Art/2DArt/SkillIcons/passives/LifeandCursesN.png"]= { ["x"]= 111, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/JuggernautAnointNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/LifeandManaFlasks.png"]= { ["x"]= 148, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/KeystoneWhispersOfDoom.png"]= { + ["Art/2DArt/SkillIcons/passives/LifeandResistancesofMinions.png"]= { ["x"]= 185, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/LifeArmourAndEvasion.png"]= { + ["Art/2DArt/SkillIcons/passives/LightOfDivinity.png"]= { ["x"]= 222, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/LifeFlasks.png"]= { + ["Art/2DArt/SkillIcons/passives/LightningResistNotable.png"]= { ["x"]= 259, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/LifeGainOnHitNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/LinkNotable3.png"]= { ["x"]= 296, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/LifeManaFlasksrecovery.png"]= { + ["Art/2DArt/SkillIcons/passives/LinkNotable4.png"]= { ["x"]= 333, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/LifeRecoupNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/LustforCarnage.png"]= { ["x"]= 370, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/LifeRegenerationGainRegenNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/MaceNotable1.png"]= { ["x"]= 407, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/LifeRegenerationLowlifeBonusNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/MaceNotable2.png"]= { ["x"]= 444, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/LifeandCursesN.png"]= { + ["Art/2DArt/SkillIcons/passives/MaceandStaffDamage.png"]= { ["x"]= 481, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/LifeandManaFlasks.png"]= { + ["Art/2DArt/SkillIcons/passives/ManaDamageKeystone.png"]= { ["x"]= 518, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/LifeandResistancesofMinions.png"]= { + ["Art/2DArt/SkillIcons/passives/ManaFlasksOften.png"]= { ["x"]= 555, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/LightOfDivinity.png"]= { + ["Art/2DArt/SkillIcons/passives/ManaGuardNotable.png"]= { ["x"]= 592, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/LightningResistNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/ManaNotable.png"]= { ["x"]= 629, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/LinkNotable3.png"]= { + ["Art/2DArt/SkillIcons/passives/ManaandArcaneSurge.png"]= { ["x"]= 666, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/LinkNotable4.png"]= { + ["Art/2DArt/SkillIcons/passives/ManaandSpellBlock.png"]= { ["x"]= 703, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/LustforCarnage.png"]= { + ["Art/2DArt/SkillIcons/passives/ManaandSpellDamage.png"]= { ["x"]= 740, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MaceNotable1.png"]= { + ["Art/2DArt/SkillIcons/passives/Mark.png"]= { ["x"]= 777, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MaceNotable2.png"]= { + ["Art/2DArt/SkillIcons/passives/MarkNotable1.png"]= { ["x"]= 814, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MaceandStaffDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/MarkNotable2.png"]= { ["x"]= 851, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ManaDamageKeystone.png"]= { + ["Art/2DArt/SkillIcons/passives/MarkNotableIncreasedEffect.png"]= { ["x"]= 888, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ManaFlasksOften.png"]= { + ["Art/2DArt/SkillIcons/passives/MarkNotableMarkSpellRecently.png"]= { ["x"]= 925, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ManaGuardNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/MartialExperience.png"]= { + ["x"]= 962, + ["y"]= 745, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/MasterofForce.png"]= { ["x"]= 0, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ManaNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/MaxElementalResistNotable.png"]= { ["x"]= 37, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ManaandArcaneSurge.png"]= { + ["Art/2DArt/SkillIcons/passives/MaxManaNotable.png"]= { ["x"]= 74, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ManaandSpellBlock.png"]= { + ["Art/2DArt/SkillIcons/passives/MaximumElementalResistances2.png"]= { ["x"]= 111, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ManaandSpellDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/MeasuredFuryNotable.png"]= { ["x"]= 148, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Mark.png"]= { + ["Art/2DArt/SkillIcons/passives/MeleeAoENode.png"]= { ["x"]= 185, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MarkNotable1.png"]= { + ["Art/2DArt/SkillIcons/passives/MeleeAoENotable.png"]= { ["x"]= 222, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MarkNotable2.png"]= { + ["Art/2DArt/SkillIcons/passives/MeleeCriticalStrikesNotable.png"]= { ["x"]= 259, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MarkNotableIncreasedEffect.png"]= { + ["Art/2DArt/SkillIcons/passives/MeleeFireNotable.png"]= { ["x"]= 296, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MarkNotableMarkSpellRecently.png"]= { + ["Art/2DArt/SkillIcons/passives/MeleeRange2.png"]= { ["x"]= 333, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MartialExperience.png"]= { + ["Art/2DArt/SkillIcons/passives/MeleeUtility.png"]= { ["x"]= 370, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MasterofForce.png"]= { + ["Art/2DArt/SkillIcons/passives/Meleerange.png"]= { ["x"]= 407, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MaxElementalResistNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/MentalRapidity.png"]= { ["x"]= 444, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MaxManaNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/MindPact.png"]= { ["x"]= 481, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MaximumElementalResistances2.png"]= { + ["Art/2DArt/SkillIcons/passives/MineAreaOfEffectNotable.png"]= { ["x"]= 518, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MeasuredFuryNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/MineCriticalStrikesNotable.png"]= { ["x"]= 555, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MeleeAoENode.png"]= { + ["Art/2DArt/SkillIcons/passives/MineManaReservationNotable.png"]= { ["x"]= 592, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MeleeAoENotable.png"]= { + ["Art/2DArt/SkillIcons/passives/MineTrap.png"]= { ["x"]= 629, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MeleeCriticalStrikesNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/MinionDmgHeraldSkillsNotable.png"]= { ["x"]= 666, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MeleeFireNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Mirage.png"]= { ["x"]= 703, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MeleeRange2.png"]= { + ["Art/2DArt/SkillIcons/passives/NaturalAuthorityNotable.png"]= { ["x"]= 740, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MeleeUtility.png"]= { + ["Art/2DArt/SkillIcons/passives/Necromancer/CommandingTheDarkness.png"]= { ["x"]= 777, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Meleerange.png"]= { + ["Art/2DArt/SkillIcons/passives/Necromancer/CorpseConsumptionNotable2.png"]= { ["x"]= 814, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MentalRapidity.png"]= { + ["Art/2DArt/SkillIcons/passives/Necromancer/DefensiveMinionNotable.png"]= { ["x"]= 851, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MindPact.png"]= { + ["Art/2DArt/SkillIcons/passives/Necromancer/EssenceGlutton.png"]= { ["x"]= 888, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MineAreaOfEffectNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Necromancer/GenericMinionNotable.png"]= { ["x"]= 925, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MineCriticalStrikesNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Necromancer/GiftsOfTheDamned.png"]= { + ["x"]= 962, + ["y"]= 782, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Necromancer/OffensiveMinionNotable.png"]= { ["x"]= 0, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MineManaReservationNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Necromancer/PlagueBringer.png"]= { ["x"]= 37, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MineTrap.png"]= { + ["Art/2DArt/SkillIcons/passives/NecromancerAnointNotable.png"]= { ["x"]= 74, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MinionDmgHeraldSkillsNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Occultist/FatefulEchoes.png"]= { ["x"]= 111, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Mirage.png"]= { + ["Art/2DArt/SkillIcons/passives/Occultist/FrigidWake.png"]= { ["x"]= 148, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/NaturalAuthorityNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Occultist/LotusExtract.png"]= { ["x"]= 185, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Necromancer/CommandingTheDarkness.png"]= { + ["Art/2DArt/SkillIcons/passives/Occultist/SoulCatalyst.png"]= { ["x"]= 222, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Necromancer/CorpseConsumptionNotable2.png"]= { + ["Art/2DArt/SkillIcons/passives/Occultist/VoidBeacon.png"]= { ["x"]= 259, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Necromancer/DefensiveMinionNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Occultist/VowOfDamnation.png"]= { ["x"]= 296, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Necromancer/EssenceGlutton.png"]= { + ["Art/2DArt/SkillIcons/passives/Occultist/WitheringPresence.png"]= { ["x"]= 333, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Necromancer/GenericMinionNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/OccultistAnointNotable.png"]= { ["x"]= 370, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Necromancer/GiftsOfTheDamned.png"]= { + ["Art/2DArt/SkillIcons/passives/OneHandedPhysicalAndLeechNotable.png"]= { ["x"]= 407, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Necromancer/OffensiveMinionNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/PathFinder/AlchemistGift.png"]= { ["x"]= 444, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Necromancer/PlagueBringer.png"]= { + ["Art/2DArt/SkillIcons/passives/PathFinder/MasterAlchemist.png"]= { ["x"]= 481, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/NecromancerAnointNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/PathFinder/MasterHerbalist.png"]= { ["x"]= 518, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Occultist/FatefulEchoes.png"]= { + ["Art/2DArt/SkillIcons/passives/PathFinder/MasterSurgeon.png"]= { ["x"]= 555, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Occultist/FrigidWake.png"]= { + ["Art/2DArt/SkillIcons/passives/PathFinder/Master Toxicist.png"]= { ["x"]= 592, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Occultist/LotusExtract.png"]= { + ["Art/2DArt/SkillIcons/passives/PathFinder/NaturesAdrenaline.png"]= { ["x"]= 629, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Occultist/SoulCatalyst.png"]= { + ["Art/2DArt/SkillIcons/passives/PathFinder/VeteranBowyer.png"]= { ["x"]= 666, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Occultist/VoidBeacon.png"]= { + ["Art/2DArt/SkillIcons/passives/PathfinderAnointNotable.png"]= { ["x"]= 703, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Occultist/VowOfDamnation.png"]= { + ["Art/2DArt/SkillIcons/passives/PhysicalDamageNotable.png"]= { ["x"]= 740, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Occultist/WitheringPresence.png"]= { + ["Art/2DArt/SkillIcons/passives/PhysicalDamageNotableGreen.png"]= { ["x"]= 777, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/OccultistAnointNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeHybrid.png"]= { ["x"]= 814, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/OneHandedPhysicalAndLeechNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNotable.png"]= { ["x"]= 851, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/PathFinder/AlchemistGift.png"]= { + ["Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimenotable1.png"]= { ["x"]= 888, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/PathFinder/MasterAlchemist.png"]= { + ["Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimenotable2.png"]= { ["x"]= 925, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/PathFinder/MasterHerbalist.png"]= { + ["Art/2DArt/SkillIcons/passives/Poison.png"]= { + ["x"]= 962, + ["y"]= 819, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/PoisonSpellsNotable.png"]= { ["x"]= 0, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/PathFinder/MasterSurgeon.png"]= { + ["Art/2DArt/SkillIcons/passives/PowerChargeNotable.png"]= { ["x"]= 37, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/PathFinder/Master Toxicist.png"]= { + ["Art/2DArt/SkillIcons/passives/Primalist/PrimalistCorpseLoot.png"]= { ["x"]= 74, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/PathFinder/NaturesAdrenaline.png"]= { + ["Art/2DArt/SkillIcons/passives/Primalist/PrimalistInventoryExpansion.png"]= { ["x"]= 111, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/PathFinder/VeteranBowyer.png"]= { + ["Art/2DArt/SkillIcons/passives/ProfaneChemistry.png"]= { ["x"]= 148, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/PathfinderAnointNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/ProjectileDmgNotable.png"]= { ["x"]= 185, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/PhysicalDamageNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/ProjectilesNotable.png"]= { ["x"]= 222, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/PhysicalDamageNotableGreen.png"]= { + ["Art/2DArt/SkillIcons/passives/ProtectiveWinds.png"]= { ["x"]= 259, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeHybrid.png"]= { + ["Art/2DArt/SkillIcons/passives/QuickRecovery.png"]= { ["x"]= 296, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/RageNotable.png"]= { ["x"]= 333, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimenotable1.png"]= { + ["Art/2DArt/SkillIcons/passives/RageNotable1.png"]= { ["x"]= 370, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimenotable2.png"]= { + ["Art/2DArt/SkillIcons/passives/RageNotable2.png"]= { ["x"]= 407, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Poison.png"]= { + ["Art/2DArt/SkillIcons/passives/RageNotable3.png"]= { ["x"]= 444, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/PoisonSpellsNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/RangedTotemCriticalStrikes.png"]= { ["x"]= 481, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/PowerChargeNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/RangedTotemOffensive.png"]= { ["x"]= 518, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Primalist/PrimalistCorpseLoot.png"]= { + ["Art/2DArt/SkillIcons/passives/RedHolyAttackNotable.png"]= { ["x"]= 555, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Primalist/PrimalistInventoryExpansion.png"]= { + ["Art/2DArt/SkillIcons/passives/Redemption.png"]= { ["x"]= 592, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ProfaneChemistry.png"]= { + ["Art/2DArt/SkillIcons/passives/ReducedManaNotable.png"]= { ["x"]= 629, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ProjectileDmgNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/ReducedProjectileSpeedNotable.png"]= { ["x"]= 666, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ProjectilesNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNotable.png"]= { ["x"]= 703, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ProtectiveWinds.png"]= { + ["Art/2DArt/SkillIcons/passives/Resourcefulness.png"]= { ["x"]= 740, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/QuickRecovery.png"]= { + ["Art/2DArt/SkillIcons/passives/Retaliation.png"]= { ["x"]= 777, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/RageNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/RetaliationAoE.png"]= { ["x"]= 814, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/RageNotable1.png"]= { + ["Art/2DArt/SkillIcons/passives/RetaliationAttackBlock.png"]= { ["x"]= 851, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/RageNotable2.png"]= { + ["Art/2DArt/SkillIcons/passives/RetaliationDurationCooldown.png"]= { ["x"]= 888, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/RageNotable3.png"]= { + ["Art/2DArt/SkillIcons/passives/RetaliationSkillDamage.png"]= { ["x"]= 925, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/RangedTotemCriticalStrikes.png"]= { + ["Art/2DArt/SkillIcons/passives/RetaliationSpellBlock.png"]= { + ["x"]= 962, + ["y"]= 856, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/RetaliationStun.png"]= { ["x"]= 0, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/RangedTotemOffensive.png"]= { + ["Art/2DArt/SkillIcons/passives/Retribution.png"]= { ["x"]= 37, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/RedHolyAttackNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Revelry.png"]= { ["x"]= 74, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Redemption.png"]= { + ["Art/2DArt/SkillIcons/passives/RighteousArmy.png"]= { ["x"]= 111, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ReducedManaNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Righteous Decree.png"]= { ["x"]= 148, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ReducedProjectileSpeedNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/RitualBloodLineNotable.png"]= { ["x"]= 185, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Robust.png"]= { ["x"]= 222, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Resourcefulness.png"]= { + ["Art/2DArt/SkillIcons/passives/Saboteur/BlindedAssult.png"]= { ["x"]= 259, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Retaliation.png"]= { + ["Art/2DArt/SkillIcons/passives/Saboteur/BombSpecialist.png"]= { ["x"]= 296, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/RetaliationAoE.png"]= { + ["Art/2DArt/SkillIcons/passives/Saboteur/ChainReaction.png"]= { ["x"]= 333, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/RetaliationAttackBlock.png"]= { + ["Art/2DArt/SkillIcons/passives/Saboteur/DemolitionSpecialist.png"]= { ["x"]= 370, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/RetaliationDurationCooldown.png"]= { + ["Art/2DArt/SkillIcons/passives/Saboteur/ExplosivesExpert.png"]= { ["x"]= 407, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/RetaliationSkillDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/Saboteur/LikeClockworkNotable.png"]= { ["x"]= 444, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/RetaliationSpellBlock.png"]= { + ["Art/2DArt/SkillIcons/passives/Saboteur/PerfectCrime.png"]= { ["x"]= 481, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/RetaliationStun.png"]= { + ["Art/2DArt/SkillIcons/passives/Saboteur/ShadowsDarknessBlind.png"]= { ["x"]= 518, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Retribution.png"]= { + ["Art/2DArt/SkillIcons/passives/Saboteur/ShrapnelSpecialist.png"]= { ["x"]= 555, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Revelry.png"]= { + ["Art/2DArt/SkillIcons/passives/SaboteurAnointNotable.png"]= { ["x"]= 592, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/RighteousArmy.png"]= { + ["Art/2DArt/SkillIcons/passives/Sanctuary.png"]= { ["x"]= 629, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Righteous Decree.png"]= { + ["Art/2DArt/SkillIcons/passives/SareshBloodlineNotable1.png"]= { ["x"]= 666, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/RitualBloodLineNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/SareshBloodlineNotable3.png"]= { ["x"]= 703, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Robust.png"]= { + ["Art/2DArt/SkillIcons/passives/SareshBloodlineNoteble2.png"]= { ["x"]= 740, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Saboteur/BlindedAssult.png"]= { + ["Art/2DArt/SkillIcons/passives/SavantPath.png"]= { ["x"]= 777, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Saboteur/BombSpecialist.png"]= { + ["Art/2DArt/SkillIcons/passives/SearingHeat.png"]= { ["x"]= 814, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Saboteur/ChainReaction.png"]= { + ["Art/2DArt/SkillIcons/passives/Sentinel.png"]= { ["x"]= 851, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Saboteur/DemolitionSpecialist.png"]= { + ["Art/2DArt/SkillIcons/passives/Shaper.png"]= { ["x"]= 888, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Saboteur/ExplosivesExpert.png"]= { + ["Art/2DArt/SkillIcons/passives/ShieldAttackDamage.png"]= { ["x"]= 925, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Saboteur/LikeClockworkNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/ShieldNotable.png"]= { + ["x"]= 962, + ["y"]= 893, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ShrugOff.png"]= { ["x"]= 0, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Saboteur/PerfectCrime.png"]= { + ["Art/2DArt/SkillIcons/passives/SkitteringRunes.png"]= { ["x"]= 37, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Saboteur/ShadowsDarknessBlind.png"]= { + ["Art/2DArt/SkillIcons/passives/Slayer/BaneOfLegends.png"]= { ["x"]= 74, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Saboteur/ShrapnelSpecialist.png"]= { + ["Art/2DArt/SkillIcons/passives/Slayer/BrutalFervor.png"]= { ["x"]= 111, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/SaboteurAnointNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Slayer/Charges.png"]= { ["x"]= 148, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Sanctuary.png"]= { + ["Art/2DArt/SkillIcons/passives/Slayer/CriticalAttacks.png"]= { ["x"]= 185, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/SareshBloodlineNotable1.png"]= { + ["Art/2DArt/SkillIcons/passives/Slayer/EndlessHunger.png"]= { ["x"]= 222, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/SareshBloodlineNotable3.png"]= { + ["Art/2DArt/SkillIcons/passives/Slayer/Headman.png"]= { ["x"]= 259, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/SareshBloodlineNoteble2.png"]= { + ["Art/2DArt/SkillIcons/passives/Slayer/Impact.png"]= { ["x"]= 296, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/SavantPath.png"]= { + ["Art/2DArt/SkillIcons/passives/SlayerAnointNotable.png"]= { ["x"]= 333, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/SearingHeat.png"]= { + ["Art/2DArt/SkillIcons/passives/SoulPact.png"]= { ["x"]= 370, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Sentinel.png"]= { + ["Art/2DArt/SkillIcons/passives/SoulSiphoning.png"]= { ["x"]= 407, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Shaper.png"]= { + ["Art/2DArt/SkillIcons/passives/SpellSuppressionLifeFlasksN.png"]= { ["x"]= 444, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ShieldAttackDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/SpellSupressionAndEnergyShieldNotable.png"]= { ["x"]= 481, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ShieldNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/SpellSupressionNotable1.png"]= { ["x"]= 518, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ShrugOff.png"]= { + ["Art/2DArt/SkillIcons/passives/SpellSupressionNotable2.png"]= { ["x"]= 555, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/SkitteringRunes.png"]= { + ["Art/2DArt/SkillIcons/passives/SpikedBulwark.png"]= { ["x"]= 592, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Slayer/BaneOfLegends.png"]= { + ["Art/2DArt/SkillIcons/passives/SpiritualAid.png"]= { ["x"]= 629, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Slayer/BrutalFervor.png"]= { + ["Art/2DArt/SkillIcons/passives/SpiritualCommand.png"]= { ["x"]= 666, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Slayer/Charges.png"]= { + ["Art/2DArt/SkillIcons/passives/StaffCrit.png"]= { ["x"]= 703, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Slayer/CriticalAttacks.png"]= { + ["Art/2DArt/SkillIcons/passives/StaffNotable.png"]= { ["x"]= 740, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Slayer/EndlessHunger.png"]= { + ["Art/2DArt/SkillIcons/passives/StaffNotable2.png"]= { ["x"]= 777, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Slayer/Headman.png"]= { + ["Art/2DArt/SkillIcons/passives/StaffNotable3.png"]= { ["x"]= 814, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Slayer/Impact.png"]= { + ["Art/2DArt/SkillIcons/passives/StanceNotableReservation.png"]= { ["x"]= 851, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/SlayerAnointNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/StanceNotableSwitching.png"]= { ["x"]= 888, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/SoulPact.png"]= { + ["Art/2DArt/SkillIcons/passives/Storm Weaver.png"]= { ["x"]= 925, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/SoulSiphoning.png"]= { + ["Art/2DArt/SkillIcons/passives/StrengthOfBlood.png"]= { + ["x"]= 962, + ["y"]= 930, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/StrikeSkillsNotable.png"]= { ["x"]= 0, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/SpellSuppressionLifeFlasksN.png"]= { + ["Art/2DArt/SkillIcons/passives/StunAvoidNotable.png"]= { ["x"]= 37, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/SpellSupressionAndEnergyShieldNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/StunMastery.png"]= { ["x"]= 74, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/SpellSupressionNotable1.png"]= { + ["Art/2DArt/SkillIcons/passives/SupremeProdigy.png"]= { ["x"]= 111, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/SpellSupressionNotable2.png"]= { + ["Art/2DArt/SkillIcons/passives/Survivalist.png"]= { ["x"]= 148, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/SpikedBulwark.png"]= { + ["Art/2DArt/SkillIcons/passives/SwordNotable1.png"]= { ["x"]= 185, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/SpiritualAid.png"]= { + ["Art/2DArt/SkillIcons/passives/TasteforBlood.png"]= { ["x"]= 222, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/SpiritualCommand.png"]= { + ["Art/2DArt/SkillIcons/passives/TempestBlast.png"]= { ["x"]= 259, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/StaffCrit.png"]= { + ["Art/2DArt/SkillIcons/passives/ThrillKiller.png"]= { ["x"]= 296, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/StaffNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/TinctureFlaskNotable1.png"]= { ["x"]= 333, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/StaffNotable2.png"]= { + ["Art/2DArt/SkillIcons/passives/TinctureManaNotable1.png"]= { ["x"]= 370, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/StaffNotable3.png"]= { + ["Art/2DArt/SkillIcons/passives/TinctureNotable1.png"]= { ["x"]= 407, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/StanceNotableReservation.png"]= { + ["Art/2DArt/SkillIcons/passives/TinctureNotable2.png"]= { ["x"]= 444, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/StanceNotableSwitching.png"]= { + ["Art/2DArt/SkillIcons/passives/TinctureNotable3.png"]= { ["x"]= 481, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Storm Weaver.png"]= { + ["Art/2DArt/SkillIcons/passives/TotemDmgNotable.png"]= { ["x"]= 518, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/StrengthOfBlood.png"]= { + ["Art/2DArt/SkillIcons/passives/Trap.png"]= { ["x"]= 555, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/StrikeSkillsNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Trap2.png"]= { ["x"]= 592, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/StunAvoidNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/TrapAndMineDmgNotable.png"]= { ["x"]= 629, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/StunMastery.png"]= { + ["Art/2DArt/SkillIcons/passives/Trickster/DamageOverTime.png"]= { ["x"]= 666, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/SupremeProdigy.png"]= { + ["Art/2DArt/SkillIcons/passives/Trickster/HeedfulRecovery.png"]= { ["x"]= 703, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Survivalist.png"]= { + ["Art/2DArt/SkillIcons/passives/Trickster/ImmuneToDoT.png"]= { ["x"]= 740, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/SwordNotable1.png"]= { + ["Art/2DArt/SkillIcons/passives/Trickster/OneStepAheadTrickster.png"]= { ["x"]= 777, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/TasteforBlood.png"]= { + ["Art/2DArt/SkillIcons/passives/Trickster/PolymathTrickster.png"]= { ["x"]= 814, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/TempestBlast.png"]= { + ["Art/2DArt/SkillIcons/passives/Trickster/SoulThiefTrickster.png"]= { ["x"]= 851, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ThrillKiller.png"]= { + ["Art/2DArt/SkillIcons/passives/Trickster/SupressionEnergyShieldTrickster.png"]= { ["x"]= 888, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/TinctureFlaskNotable1.png"]= { + ["Art/2DArt/SkillIcons/passives/Trickster/UncontrolledVigour.png"]= { ["x"]= 925, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/TinctureManaNotable1.png"]= { + ["Art/2DArt/SkillIcons/passives/TricksterAnointNotable.png"]= { + ["x"]= 962, + ["y"]= 967, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/TrueStriker.png"]= { ["x"]= 0, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/TinctureNotable1.png"]= { + ["Art/2DArt/SkillIcons/passives/TwoHandedMeleeDamage.png"]= { ["x"]= 37, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/TinctureNotable2.png"]= { + ["Art/2DArt/SkillIcons/passives/TwoHandedweaponImpalesNotable.png"]= { ["x"]= 74, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/TinctureNotable3.png"]= { + ["Art/2DArt/SkillIcons/passives/Unfaltering.png"]= { ["x"]= 111, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/TotemDmgNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Unrelenting.png"]= { ["x"]= 148, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Trap.png"]= { + ["Art/2DArt/SkillIcons/passives/Unwavering.png"]= { ["x"]= 185, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Trap2.png"]= { + ["Art/2DArt/SkillIcons/passives/UpwardsFiringProjectilesNotable.png"]= { ["x"]= 222, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/TrapAndMineDmgNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Vampirism.png"]= { ["x"]= 259, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Trickster/DamageOverTime.png"]= { + ["Art/2DArt/SkillIcons/passives/VoidBarrier.png"]= { ["x"]= 296, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Trickster/HeedfulRecovery.png"]= { + ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanBloodMagic1.png"]= { ["x"]= 333, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Trickster/ImmuneToDoT.png"]= { + ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanBloodMagic2.png"]= { ["x"]= 370, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Trickster/OneStepAheadTrickster.png"]= { + ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanBloodMagic3.png"]= { ["x"]= 407, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Trickster/PolymathTrickster.png"]= { + ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanCorpses.png"]= { ["x"]= 444, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Trickster/SoulThiefTrickster.png"]= { + ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanCurses2.png"]= { ["x"]= 481, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Trickster/SupressionEnergyShieldTrickster.png"]= { + ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanCursesChoice.png"]= { ["x"]= 518, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Trickster/UncontrolledVigour.png"]= { + ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanVoodooDoll.png"]= { ["x"]= 555, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/TricksterAnointNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/WandDamage.png"]= { ["x"]= 592, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/TrueStriker.png"]= { + ["Art/2DArt/SkillIcons/passives/WarcryBuffEffectNotable.png"]= { ["x"]= 629, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/TwoHandedMeleeDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/WarcryGainDamageNotable.png"]= { ["x"]= 666, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/TwoHandedweaponImpalesNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Warden/TinctureRangedNotable.png"]= { ["x"]= 703, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Unfaltering.png"]= { + ["Art/2DArt/SkillIcons/passives/Warden/WardenAllAilments.png"]= { ["x"]= 740, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Unrelenting.png"]= { + ["Art/2DArt/SkillIcons/passives/Warden/WardenBarkskin1.png"]= { ["x"]= 777, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Unwavering.png"]= { + ["Art/2DArt/SkillIcons/passives/Warden/WardenBarkskin2.png"]= { ["x"]= 814, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/UpwardsFiringProjectilesNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Warden/WardenColdAilments.png"]= { ["x"]= 851, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Vampirism.png"]= { + ["Art/2DArt/SkillIcons/passives/Warden/WardenFireAilments.png"]= { ["x"]= 888, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/VoidBarrier.png"]= { + ["Art/2DArt/SkillIcons/passives/Warden/WardenLightningAilments.png"]= { ["x"]= 925, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanBloodMagic1.png"]= { + ["Art/2DArt/SkillIcons/passives/Warden/WardenPrimitivism.png"]= { + ["x"]= 962, + ["y"]= 1004, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Warden/WardenSaps1.png"]= { ["x"]= 0, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanBloodMagic2.png"]= { + ["Art/2DArt/SkillIcons/passives/Warden/WardenSaps2.png"]= { ["x"]= 37, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanBloodMagic3.png"]= { + ["Art/2DArt/SkillIcons/passives/Warden/WardenSaps3.png"]= { ["x"]= 74, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanCorpses.png"]= { + ["Art/2DArt/SkillIcons/passives/Warden/WardenTracking.png"]= { ["x"]= 111, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanCurses2.png"]= { + ["Art/2DArt/SkillIcons/passives/WardenAnointNotable.png"]= { ["x"]= 148, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanCursesChoice.png"]= { + ["Art/2DArt/SkillIcons/passives/Warrior.png"]= { ["x"]= 185, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanVoodooDoll.png"]= { + ["Art/2DArt/SkillIcons/passives/WeaponElementalNotable.png"]= { ["x"]= 222, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/WandDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/WritteninBlood.png"]= { ["x"]= 259, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/WarcryBuffEffectNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/accuracydex.png"]= { ["x"]= 296, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/WarcryGainDamageNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/adderstouch.png"]= { ["x"]= 333, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Warden/TinctureRangedNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/ambidexterity.png"]= { ["x"]= 370, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Warden/WardenAllAilments.png"]= { + ["Art/2DArt/SkillIcons/passives/amplify.png"]= { ["x"]= 407, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Warden/WardenBarkskin1.png"]= { + ["Art/2DArt/SkillIcons/passives/animalspirit.png"]= { ["x"]= 444, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Warden/WardenBarkskin2.png"]= { + ["Art/2DArt/SkillIcons/passives/arcaneefficiency.png"]= { ["x"]= 481, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Warden/WardenColdAilments.png"]= { + ["Art/2DArt/SkillIcons/passives/arcane focus.png"]= { ["x"]= 518, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Warden/WardenFireAilments.png"]= { + ["Art/2DArt/SkillIcons/passives/arcanepotency.png"]= { ["x"]= 555, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Warden/WardenLightningAilments.png"]= { + ["Art/2DArt/SkillIcons/passives/arcaneradience.png"]= { ["x"]= 592, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Warden/WardenPrimitivism.png"]= { + ["Art/2DArt/SkillIcons/passives/armourmastery.png"]= { ["x"]= 629, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Warden/WardenSaps1.png"]= { + ["Art/2DArt/SkillIcons/passives/arsonist.png"]= { ["x"]= 666, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Warden/WardenSaps2.png"]= { + ["Art/2DArt/SkillIcons/passives/ashfrostandstorm.png"]= { ["x"]= 703, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Warden/WardenSaps3.png"]= { + ["Art/2DArt/SkillIcons/passives/attackspeedbow.png"]= { ["x"]= 740, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Warden/WardenTracking.png"]= { + ["Art/2DArt/SkillIcons/passives/authority.png"]= { ["x"]= 777, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/WardenAnointNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/barricade.png"]= { ["x"]= 814, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Warrior.png"]= { + ["Art/2DArt/SkillIcons/passives/berserking.png"]= { ["x"]= 851, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/WeaponElementalNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/bladebarrier.png"]= { ["x"]= 888, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/WritteninBlood.png"]= { + ["Art/2DArt/SkillIcons/passives/blademaster.png"]= { ["x"]= 925, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/accuracydex.png"]= { + ["Art/2DArt/SkillIcons/passives/blademistress.png"]= { + ["x"]= 962, + ["y"]= 1041, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/blastradius.png"]= { ["x"]= 0, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/adderstouch.png"]= { + ["Art/2DArt/SkillIcons/passives/bodysoul.png"]= { ["x"]= 37, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ambidexterity.png"]= { + ["Art/2DArt/SkillIcons/passives/borntofight.png"]= { ["x"]= 74, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/amplify.png"]= { + ["Art/2DArt/SkillIcons/passives/breathofrime.png"]= { ["x"]= 111, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/animalspirit.png"]= { + ["Art/2DArt/SkillIcons/passives/butchery.png"]= { ["x"]= 148, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/arcaneefficiency.png"]= { + ["Art/2DArt/SkillIcons/passives/castavoidinterruption.png"]= { ["x"]= 185, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/arcane focus.png"]= { + ["Art/2DArt/SkillIcons/passives/catalyse.png"]= { ["x"]= 222, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/arcanepotency.png"]= { + ["Art/2DArt/SkillIcons/passives/chargedex.png"]= { ["x"]= 259, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/arcaneradience.png"]= { + ["Art/2DArt/SkillIcons/passives/chargeint.png"]= { ["x"]= 296, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/armourmastery.png"]= { + ["Art/2DArt/SkillIcons/passives/chargestr.png"]= { ["x"]= 333, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/arsonist.png"]= { + ["Art/2DArt/SkillIcons/passives/cleverconstruction.png"]= { ["x"]= 370, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ashfrostandstorm.png"]= { + ["Art/2DArt/SkillIcons/passives/clustersLink2.png"]= { ["x"]= 407, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/attackspeedbow.png"]= { + ["Art/2DArt/SkillIcons/passives/clustersLink3.png"]= { ["x"]= 444, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/authority.png"]= { + ["Art/2DArt/SkillIcons/passives/criticalstrikemultiplier2.png"]= { ["x"]= 481, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/barricade.png"]= { + ["Art/2DArt/SkillIcons/passives/cruelblade.png"]= { ["x"]= 518, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/berserking.png"]= { + ["Art/2DArt/SkillIcons/passives/daggerpenetration.png"]= { ["x"]= 555, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/bladebarrier.png"]= { + ["Art/2DArt/SkillIcons/passives/deadlydraw.png"]= { ["x"]= 592, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/blademaster.png"]= { + ["Art/2DArt/SkillIcons/passives/deadlyprecision.png"]= { ["x"]= 629, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/blademistress.png"]= { + ["Art/2DArt/SkillIcons/passives/deathattunement.png"]= { ["x"]= 666, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/blastradius.png"]= { + ["Art/2DArt/SkillIcons/passives/deepthoughts.png"]= { ["x"]= 703, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/bodysoul.png"]= { + ["Art/2DArt/SkillIcons/passives/deepwisdom.png"]= { ["x"]= 740, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/borntofight.png"]= { + ["Art/2DArt/SkillIcons/passives/diamondskin.png"]= { ["x"]= 777, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/breathofrime.png"]= { + ["Art/2DArt/SkillIcons/passives/doomcast.png"]= { ["x"]= 814, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/butchery.png"]= { + ["Art/2DArt/SkillIcons/passives/eagleeye.png"]= { ["x"]= 851, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/castavoidinterruption.png"]= { + ["Art/2DArt/SkillIcons/passives/eagletalons.png"]= { ["x"]= 888, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/catalyse.png"]= { + ["Art/2DArt/SkillIcons/passives/elderpower.png"]= { ["x"]= 925, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/chargedex.png"]= { + ["Art/2DArt/SkillIcons/passives/elementalist.png"]= { + ["x"]= 962, + ["y"]= 1078, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/evasion.png"]= { ["x"]= 0, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/chargeint.png"]= { + ["Art/2DArt/SkillIcons/passives/executioner.png"]= { ["x"]= 37, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/chargestr.png"]= { + ["Art/2DArt/SkillIcons/passives/expeditiousmunitions.png"]= { ["x"]= 74, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/cleverconstruction.png"]= { + ["Art/2DArt/SkillIcons/passives/fellingtheweak.png"]= { ["x"]= 111, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/clustersLink2.png"]= { + ["Art/2DArt/SkillIcons/passives/fending.png"]= { ["x"]= 148, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/clustersLink3.png"]= { + ["Art/2DArt/SkillIcons/passives/finesse.png"]= { ["x"]= 185, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/criticalstrikemultiplier2.png"]= { + ["Art/2DArt/SkillIcons/passives/firedamage.png"]= { ["x"]= 222, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/cruelblade.png"]= { + ["Art/2DArt/SkillIcons/passives/flameborn.png"]= { ["x"]= 259, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/daggerpenetration.png"]= { + ["Art/2DArt/SkillIcons/passives/flaying.png"]= { ["x"]= 296, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/deadlydraw.png"]= { + ["Art/2DArt/SkillIcons/passives/foresight.png"]= { ["x"]= 333, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/deadlyprecision.png"]= { + ["Art/2DArt/SkillIcons/passives/frostborn.png"]= { ["x"]= 370, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/deathattunement.png"]= { + ["Art/2DArt/SkillIcons/passives/furybolts.png"]= { ["x"]= 407, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/deepthoughts.png"]= { + ["Art/2DArt/SkillIcons/passives/fussilade.png"]= { ["x"]= 444, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/deepwisdom.png"]= { + ["Art/2DArt/SkillIcons/passives/galvanichammer.png"]= { ["x"]= 481, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/diamondskin.png"]= { + ["Art/2DArt/SkillIcons/passives/golemsblood.png"]= { ["x"]= 518, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/doomcast.png"]= { + ["Art/2DArt/SkillIcons/passives/grace.png"]= { ["x"]= 555, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/eagleeye.png"]= { + ["Art/2DArt/SkillIcons/passives/graveexpectations.png"]= { ["x"]= 592, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/eagletalons.png"]= { + ["Art/2DArt/SkillIcons/passives/graveintentions.png"]= { ["x"]= 629, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/elderpower.png"]= { + ["Art/2DArt/SkillIcons/passives/gravepact.png"]= { ["x"]= 666, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/elementalist.png"]= { + ["Art/2DArt/SkillIcons/passives/hammerblows.png"]= { ["x"]= 703, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/evasion.png"]= { + ["Art/2DArt/SkillIcons/passives/hatchetmaster.png"]= { ["x"]= 740, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/executioner.png"]= { + ["Art/2DArt/SkillIcons/passives/heartofthegladiator.png"]= { ["x"]= 777, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/expeditiousmunitions.png"]= { + ["Art/2DArt/SkillIcons/passives/heartpierce.png"]= { ["x"]= 814, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/fellingtheweak.png"]= { + ["Art/2DArt/SkillIcons/passives/heartseeker.png"]= { ["x"]= 851, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/fending.png"]= { + ["Art/2DArt/SkillIcons/passives/heavydraw.png"]= { ["x"]= 888, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/finesse.png"]= { + ["Art/2DArt/SkillIcons/passives/hellfire.png"]= { ["x"]= 925, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/firedamage.png"]= { + ["Art/2DArt/SkillIcons/passives/highexplosives.png"]= { + ["x"]= 962, + ["y"]= 1115, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/icebite.png"]= { ["x"]= 0, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/flameborn.png"]= { + ["Art/2DArt/SkillIcons/passives/iceheart.png"]= { ["x"]= 37, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/flaying.png"]= { + ["Art/2DArt/SkillIcons/passives/increased armor.png"]= { ["x"]= 74, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/foresight.png"]= { + ["Art/2DArt/SkillIcons/passives/influence.png"]= { ["x"]= 111, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/frostborn.png"]= { + ["Art/2DArt/SkillIcons/passives/innerforce.png"]= { ["x"]= 148, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/furybolts.png"]= { + ["Art/2DArt/SkillIcons/passives/ironwoodtotem.png"]= { ["x"]= 185, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/fussilade.png"]= { + ["Art/2DArt/SkillIcons/passives/kingofthehill.png"]= { ["x"]= 222, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/galvanichammer.png"]= { + ["Art/2DArt/SkillIcons/passives/lavalash.png"]= { ["x"]= 259, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/golemsblood.png"]= { + ["Art/2DArt/SkillIcons/passives/leadership.png"]= { ["x"]= 296, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/grace.png"]= { + ["Art/2DArt/SkillIcons/passives/legendaryswordsman.png"]= { ["x"]= 333, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/graveexpectations.png"]= { + ["Art/2DArt/SkillIcons/passives/life1.png"]= { ["x"]= 370, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/graveintentions.png"]= { + ["Art/2DArt/SkillIcons/passives/lifeleech.png"]= { ["x"]= 407, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/gravepact.png"]= { + ["Art/2DArt/SkillIcons/passives/lifeleechimmunity.png"]= { ["x"]= 444, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/hammerblows.png"]= { + ["Art/2DArt/SkillIcons/passives/lightningint.png"]= { ["x"]= 481, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/hatchetmaster.png"]= { + ["Art/2DArt/SkillIcons/passives/lordofthedead.png"]= { ["x"]= 518, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/heartofthegladiator.png"]= { + ["Art/2DArt/SkillIcons/passives/macedmg.png"]= { ["x"]= 555, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/heartpierce.png"]= { + ["Art/2DArt/SkillIcons/passives/manaconduit.png"]= { ["x"]= 592, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/heartseeker.png"]= { + ["Art/2DArt/SkillIcons/passives/masterfletcher.png"]= { ["x"]= 629, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/heavydraw.png"]= { + ["Art/2DArt/SkillIcons/passives/mastersapper.png"]= { ["x"]= 666, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/hellfire.png"]= { + ["Art/2DArt/SkillIcons/passives/masterywand.png"]= { ["x"]= 703, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/highexplosives.png"]= { + ["Art/2DArt/SkillIcons/passives/melding.png"]= { ["x"]= 740, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/icebite.png"]= { + ["Art/2DArt/SkillIcons/passives/mentalacuity.png"]= { ["x"]= 777, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/iceheart.png"]= { + ["Art/2DArt/SkillIcons/passives/minddrinker.png"]= { ["x"]= 814, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/increased armor.png"]= { + ["Art/2DArt/SkillIcons/passives/minionblockchance.png"]= { ["x"]= 851, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/influence.png"]= { + ["Art/2DArt/SkillIcons/passives/newcolddamage.png"]= { ["x"]= 888, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/innerforce.png"]= { + ["Art/2DArt/SkillIcons/passives/newenergyshield.png"]= { ["x"]= 925, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ironwoodtotem.png"]= { + ["Art/2DArt/SkillIcons/passives/newevadepercentage.png"]= { + ["x"]= 962, + ["y"]= 1152, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/newincreasedcritical.png"]= { ["x"]= 0, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/kingofthehill.png"]= { + ["Art/2DArt/SkillIcons/passives/newnewattackspeed.png"]= { ["x"]= 37, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/lavalash.png"]= { + ["Art/2DArt/SkillIcons/passives/newtitanicmight.png"]= { ["x"]= 74, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/leadership.png"]= { + ["Art/2DArt/SkillIcons/passives/nightstalker.png"]= { ["x"]= 111, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/legendaryswordsman.png"]= { + ["Art/2DArt/SkillIcons/passives/nimbleness.png"]= { ["x"]= 148, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/life1.png"]= { + ["Art/2DArt/SkillIcons/passives/oxblood.png"]= { ["x"]= 185, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/lifeleech.png"]= { + ["Art/2DArt/SkillIcons/passives/perfectaim.png"]= { ["x"]= 222, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/lifeleechimmunity.png"]= { + ["Art/2DArt/SkillIcons/passives/plusdexterity.png"]= { ["x"]= 259, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/lightningint.png"]= { + ["Art/2DArt/SkillIcons/passives/plusintelligence.png"]= { ["x"]= 296, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/lordofthedead.png"]= { + ["Art/2DArt/SkillIcons/passives/plusstrength.png"]= { ["x"]= 333, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/macedmg.png"]= { + ["Art/2DArt/SkillIcons/passives/potencyofwill.png"]= { ["x"]= 370, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/manaconduit.png"]= { + ["Art/2DArt/SkillIcons/passives/precision.png"]= { ["x"]= 407, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/masterfletcher.png"]= { + ["Art/2DArt/SkillIcons/passives/pyromaniac.png"]= { ["x"]= 444, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/mastersapper.png"]= { + ["Art/2DArt/SkillIcons/passives/quickstep.png"]= { ["x"]= 481, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/masterywand.png"]= { + ["Art/2DArt/SkillIcons/passives/razorsedge.png"]= { ["x"]= 518, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/melding.png"]= { + ["Art/2DArt/SkillIcons/passives/reaver.png"]= { ["x"]= 555, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/mentalacuity.png"]= { + ["Art/2DArt/SkillIcons/passives/revengeofthehunted.png"]= { ["x"]= 592, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/minddrinker.png"]= { + ["Art/2DArt/SkillIcons/passives/saboteur.png"]= { ["x"]= 629, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/minionblockchance.png"]= { + ["Art/2DArt/SkillIcons/passives/savant.png"]= { ["x"]= 666, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/newcolddamage.png"]= { + ["Art/2DArt/SkillIcons/passives/scissorblades.png"]= { ["x"]= 703, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/newenergyshield.png"]= { + ["Art/2DArt/SkillIcons/passives/serpentstance.png"]= { ["x"]= 740, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/newevadepercentage.png"]= { + ["Art/2DArt/SkillIcons/passives/shamsnisticfury.png"]= { ["x"]= 777, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/newincreasedcritical.png"]= { + ["Art/2DArt/SkillIcons/passives/shieldwall.png"]= { ["x"]= 814, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/newnewattackspeed.png"]= { + ["Art/2DArt/SkillIcons/passives/skullcracking.png"]= { ["x"]= 851, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/newtitanicmight.png"]= { + ["Art/2DArt/SkillIcons/passives/soulsyphon.png"]= { ["x"]= 888, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/nightstalker.png"]= { + ["Art/2DArt/SkillIcons/passives/sovereignty.png"]= { ["x"]= 925, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/nimbleness.png"]= { + ["Art/2DArt/SkillIcons/passives/sparkingattacks.png"]= { + ["x"]= 962, + ["y"]= 1189, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/stabbingcomeback.png"]= { ["x"]= 0, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/oxblood.png"]= { + ["Art/2DArt/SkillIcons/passives/staticshield.png"]= { ["x"]= 37, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/perfectaim.png"]= { + ["Art/2DArt/SkillIcons/passives/stormborn.png"]= { ["x"]= 74, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/plusdexterity.png"]= { + ["Art/2DArt/SkillIcons/passives/strongarm.png"]= { ["x"]= 111, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/plusintelligence.png"]= { + ["Art/2DArt/SkillIcons/passives/stunmace.png"]= { ["x"]= 148, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/plusstrength.png"]= { + ["Art/2DArt/SkillIcons/passives/stunstaff.png"]= { ["x"]= 185, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/potencyofwill.png"]= { + ["Art/2DArt/SkillIcons/passives/swagger.png"]= { ["x"]= 222, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/precision.png"]= { + ["Art/2DArt/SkillIcons/passives/swashbuckler.png"]= { ["x"]= 259, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/pyromaniac.png"]= { + ["Art/2DArt/SkillIcons/passives/talonsofmurder.png"]= { ["x"]= 296, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/quickstep.png"]= { + ["Art/2DArt/SkillIcons/passives/thickskin.png"]= { ["x"]= 333, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/razorsedge.png"]= { + ["Art/2DArt/SkillIcons/passives/throatseeker.png"]= { ["x"]= 370, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/reaver.png"]= { + ["Art/2DArt/SkillIcons/passives/titanicmight.png"]= { ["x"]= 407, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/revengeofthehunted.png"]= { + ["Art/2DArt/SkillIcons/passives/totemandbrandrange.png"]= { ["x"]= 444, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/saboteur.png"]= { + ["Art/2DArt/SkillIcons/passives/totemicmastery.png"]= { ["x"]= 481, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/savant.png"]= { + ["Art/2DArt/SkillIcons/passives/totemiczeal.png"]= { ["x"]= 518, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/scissorblades.png"]= { + ["Art/2DArt/SkillIcons/passives/trapsradius.png"]= { ["x"]= 555, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/serpentstance.png"]= { + ["Art/2DArt/SkillIcons/passives/trollblood.png"]= { ["x"]= 592, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/shamsnisticfury.png"]= { + ["Art/2DArt/SkillIcons/passives/volitilemines.png"]= { ["x"]= 629, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/shieldwall.png"]= { + ["Art/2DArt/SkillIcons/passives/wandslingersprowess.png"]= { ["x"]= 666, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/skullcracking.png"]= { + ["Art/2DArt/SkillIcons/passives/whirlingstaff.png"]= { ["x"]= 703, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/soulsyphon.png"]= { + ["Art/2DArt/SkillIcons/passives/wreckingball.png"]= { ["x"]= 740, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/sovereignty.png"]= { + ["Art/2DArt/SkillIcons/passives/Ascendants/Assassin.png"]= { ["x"]= 777, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/sparkingattacks.png"]= { + ["Art/2DArt/SkillIcons/passives/Ascendants/Berserker.png"]= { ["x"]= 814, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/stabbingcomeback.png"]= { + ["Art/2DArt/SkillIcons/passives/Ascendants/Champion.png"]= { ["x"]= 851, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/staticshield.png"]= { + ["Art/2DArt/SkillIcons/passives/Ascendants/Chieftain.png"]= { ["x"]= 888, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/stormborn.png"]= { + ["Art/2DArt/SkillIcons/passives/Ascendants/Deadeye.png"]= { ["x"]= 925, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/strongarm.png"]= { + ["Art/2DArt/SkillIcons/passives/Ascendants/Elementalist.png"]= { + ["x"]= 962, + ["y"]= 1226, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/Gladiator.png"]= { ["x"]= 0, ["y"]= 1263, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/stunmace.png"]= { + ["Art/2DArt/SkillIcons/passives/Ascendants/Guardian.png"]= { ["x"]= 37, ["y"]= 1263, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/stunstaff.png"]= { + ["Art/2DArt/SkillIcons/passives/Ascendants/Hierophant.png"]= { ["x"]= 74, ["y"]= 1263, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/swagger.png"]= { + ["Art/2DArt/SkillIcons/passives/Ascendants/Inquisitor.png"]= { ["x"]= 111, ["y"]= 1263, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/swashbuckler.png"]= { + ["Art/2DArt/SkillIcons/passives/Ascendants/Juggernaut.png"]= { ["x"]= 148, ["y"]= 1263, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/talonsofmurder.png"]= { + ["Art/2DArt/SkillIcons/passives/Ascendants/Necromancer.png"]= { ["x"]= 185, ["y"]= 1263, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/thickskin.png"]= { + ["Art/2DArt/SkillIcons/passives/Ascendants/Occultist.png"]= { ["x"]= 222, ["y"]= 1263, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/throatseeker.png"]= { + ["Art/2DArt/SkillIcons/passives/Ascendants/Pathfinder.png"]= { ["x"]= 259, ["y"]= 1263, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/titanicmight.png"]= { + ["Art/2DArt/SkillIcons/passives/Ascendants/Raider.png"]= { ["x"]= 296, ["y"]= 1263, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/totemandbrandrange.png"]= { + ["Art/2DArt/SkillIcons/passives/Ascendants/Saboteur.png"]= { ["x"]= 333, ["y"]= 1263, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/totemicmastery.png"]= { + ["Art/2DArt/SkillIcons/passives/Ascendants/Slayer.png"]= { ["x"]= 370, ["y"]= 1263, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/totemiczeal.png"]= { + ["Art/2DArt/SkillIcons/passives/Ascendants/Trickster.png"]= { ["x"]= 407, ["y"]= 1263, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/trapsradius.png"]= { + ["Art/2DArt/SkillIcons/passives/Assassin/Ambush.png"]= { ["x"]= 444, ["y"]= 1263, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/trollblood.png"]= { + ["Art/2DArt/SkillIcons/passives/Chieftain/TawhoaForestsStrength.png"]= { ["x"]= 481, ["y"]= 1263, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/volitilemines.png"]= { - ["x"]= 518, - ["y"]= 1263, - ["w"]= 37, - ["h"]= 37 - }, - ["Art/2DArt/SkillIcons/passives/wandslingersprowess.png"]= { - ["x"]= 555, - ["y"]= 1263, - ["w"]= 37, - ["h"]= 37 - }, - ["Art/2DArt/SkillIcons/passives/whirlingstaff.png"]= { - ["x"]= 592, - ["y"]= 1263, - ["w"]= 37, - ["h"]= 37 - }, - ["Art/2DArt/SkillIcons/passives/wreckingball.png"]= { - ["x"]= 629, - ["y"]= 1263, - ["w"]= 37, - ["h"]= 37 - }, ["Art/2DArt/SkillIcons/passives/HinekoraPassiveIcon1.png"]= { - ["x"]= 666, + ["x"]= 518, ["y"]= 1263, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/HinekoraPassiveIcon2.png"]= { - ["x"]= 703, + ["x"]= 555, ["y"]= 1263, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/HinekoraPassiveIcon3.png"]= { - ["x"]= 740, + ["x"]= 592, ["y"]= 1263, ["w"]= 37, ["h"]= 37 @@ -6846,8 +6972,8 @@ return { } }, ["keystoneActive"]= { - ["filename"]= "https://web.poecdn.com/image/passive-skill/skills-3.jpg?24c5e3b9", - ["w"]= 962, + ["filename"]= "https://web.poecdn.com/image/passive-skill/skills-3.jpg?b1b66a3b", + ["w"]= 999, ["h"]= 1459, ["coords"]= { ["Art/2DArt/SkillIcons/passives/AnointOnlyKeystone.png"]= { @@ -6959,217 +7085,217 @@ return { ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/KeystoneEldritchBattery.png"]= { - ["x"]= 0, - ["y"]= 1353, + ["x"]= 936, + ["y"]= 1300, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/KeystoneElementalEquilibrium.png"]= { - ["x"]= 52, + ["x"]= 0, ["y"]= 1353, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/KeystoneElementalOverload.png"]= { - ["x"]= 104, + ["x"]= 52, ["y"]= 1353, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/KeystoneHexMaster.png"]= { - ["x"]= 156, + ["x"]= 104, ["y"]= 1353, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/KeystoneIronGrip.png"]= { - ["x"]= 208, + ["x"]= 156, ["y"]= 1353, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/KeystoneIronReflexes.png"]= { - ["x"]= 260, + ["x"]= 208, ["y"]= 1353, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/KeystoneIronWill.png"]= { - ["x"]= 312, + ["x"]= 260, ["y"]= 1353, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/KeystoneMinionInstability.png"]= { - ["x"]= 364, + ["x"]= 312, ["y"]= 1353, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/KeystoneNecromanticAegis.png"]= { - ["x"]= 416, + ["x"]= 364, ["y"]= 1353, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/KeystonePainAttunement.png"]= { - ["x"]= 468, + ["x"]= 416, ["y"]= 1353, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/KeystonePointBlankArcher.png"]= { - ["x"]= 520, + ["x"]= 468, ["y"]= 1353, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/KeystoneResoluteTechnique.png"]= { - ["x"]= 572, + ["x"]= 520, ["y"]= 1353, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/KeystoneUnwaveringStance.png"]= { - ["x"]= 624, + ["x"]= 572, ["y"]= 1353, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/Kineticism.png"]= { - ["x"]= 676, + ["x"]= 624, ["y"]= 1353, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/LoneMessenger.png"]= { - ["x"]= 728, + ["x"]= 676, ["y"]= 1353, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/MiracleMaker.png"]= { - ["x"]= 780, + ["x"]= 728, ["y"]= 1353, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/MomentofRespite.png"]= { - ["x"]= 832, + ["x"]= 780, ["y"]= 1353, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/NaturesPatience.png"]= { - ["x"]= 884, + ["x"]= 832, ["y"]= 1353, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/Occultist/EldrichBarrier.png"]= { - ["x"]= 0, - ["y"]= 1406, + ["x"]= 884, + ["y"]= 1353, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/Pitfighter.png"]= { - ["x"]= 52, - ["y"]= 1406, + ["x"]= 936, + ["y"]= 1353, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/PreciseTechnique.png"]= { - ["x"]= 104, + ["x"]= 0, ["y"]= 1406, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/Resilience.png"]= { - ["x"]= 156, + ["x"]= 52, ["y"]= 1406, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/RetaliationKeystone.png"]= { - ["x"]= 208, + ["x"]= 104, ["y"]= 1406, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/SacredBastionKeystone.png"]= { - ["x"]= 260, + ["x"]= 156, ["y"]= 1406, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/SecretOfAgony.png"]= { - ["x"]= 312, + ["x"]= 208, ["y"]= 1406, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/SupremeEgo.png"]= { - ["x"]= 364, + ["x"]= 260, ["y"]= 1406, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/TinctureKeystone1.png"]= { - ["x"]= 416, + ["x"]= 312, ["y"]= 1406, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/Trickster/AcrobaticWillpower.png"]= { - ["x"]= 468, + ["x"]= 364, ["y"]= 1406, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/VersatileCombatant.png"]= { - ["x"]= 520, + ["x"]= 416, ["y"]= 1406, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/VeteransAwareness.png"]= { - ["x"]= 572, + ["x"]= 468, ["y"]= 1406, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/WindDancer.png"]= { - ["x"]= 624, + ["x"]= 520, ["y"]= 1406, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/ghostreaver.png"]= { - ["x"]= 676, + ["x"]= 572, ["y"]= 1406, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/heroicspirit.png"]= { - ["x"]= 728, + ["x"]= 624, ["y"]= 1406, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/liferegentoenergyshield.png"]= { - ["x"]= 780, + ["x"]= 676, ["y"]= 1406, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/totemmax.png"]= { - ["x"]= 832, + ["x"]= 728, ["y"]= 1406, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/vaalpact.png"]= { - ["x"]= 884, + ["x"]= 780, ["y"]= 1406, ["w"]= 52, ["h"]= 53 @@ -7177,8 +7303,8 @@ return { } }, ["normalInactive"]= { - ["filename"]= "https://web.poecdn.com/image/passive-skill/skills-disabled-3.jpg?ac7492dd", - ["w"]= 962, + ["filename"]= "https://web.poecdn.com/image/passive-skill/skills-disabled-3.jpg?94caf4e2", + ["w"]= 999, ["h"]= 1459, ["coords"]= { ["Art/2DArt/SkillIcons/passives/2handeddamage.png"]= { @@ -7404,2539 +7530,2539 @@ return { ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/AtlasTrees/BestiaryNode1.png"]= { - ["x"]= 0, - ["y"]= 26, + ["x"]= 962, + ["y"]= 0, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/AtlasTrees/BestiaryNotable4.png"]= { - ["x"]= 26, + ["x"]= 0, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/AtlasTrees/BestiaryNotable5.png"]= { - ["x"]= 52, + ["x"]= 26, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/AtlasTrees/BestiaryNotable6.png"]= { - ["x"]= 78, + ["x"]= 52, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/AtlasTrees/BloodLineOlrothRune1.png"]= { - ["x"]= 104, + ["x"]= 78, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/AtlasTrees/BloodLineOlrothRune2.png"]= { - ["x"]= 130, + ["x"]= 104, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/AtlasTrees/BloodLineOlrothRune3.png"]= { - ["x"]= 156, + ["x"]= 130, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/AtlasTrees/BoldUndertaking.png"]= { - ["x"]= 182, + ["x"]= 156, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/AtlasTrees/BreachBossClaspedHands.png"]= { - ["x"]= 208, + ["x"]= 182, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/AtlasTrees/DeliriumNode1.png"]= { - ["x"]= 234, + ["x"]= 208, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/AtlasTrees/ExpeditionNode1.png"]= { - ["x"]= 260, + ["x"]= 234, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/AtlasTrees/HarbingerNotable3.png"]= { - ["x"]= 286, + ["x"]= 260, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/AtlasTrees/LichNode1.png"]= { - ["x"]= 312, + ["x"]= 286, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/AtlasTrees/LyciaNode1.png"]= { - ["x"]= 338, + ["x"]= 312, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/AtlasTrees/MorePrimalWispsSmall.png"]= { - ["x"]= 364, + ["x"]= 338, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/AtlasTrees/MoreVividWispsSmall.png"]= { - ["x"]= 390, + ["x"]= 364, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/AtlasTrees/MoreWildWispsSmall.png"]= { - ["x"]= 416, + ["x"]= 390, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/AtlasTrees/PerandusNotable2.png"]= { - ["x"]= 442, + ["x"]= 416, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/AtlasTrees/RitualBloodlineNode.png"]= { - ["x"]= 468, + ["x"]= 442, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/AtlasTrees/UltimatumNode1.png"]= { - ["x"]= 494, + ["x"]= 468, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/AtlasTrees/UltimatumNotable6.png"]= { - ["x"]= 520, + ["x"]= 494, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/AtlasTrees/UltimatumNotableMonsters1.png"]= { - ["x"]= 546, + ["x"]= 520, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/AtlasTrees/UltimatumNotableMonsters2.png"]= { - ["x"]= 572, + ["x"]= 546, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/AtlasTrees/UltimatumNotableStoneCircle.png"]= { - ["x"]= 598, + ["x"]= 572, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/AttackBlindNode.png"]= { - ["x"]= 624, + ["x"]= 598, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/AttackDamangeAndEvasionNotableNode.png"]= { - ["x"]= 650, + ["x"]= 624, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/AttackPoisonNode.png"]= { - ["x"]= 676, + ["x"]= 650, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/AuraEffectNode.png"]= { - ["x"]= 702, + ["x"]= 676, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/BannerAreaNode.png"]= { - ["x"]= 728, + ["x"]= 702, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/BannerDurationNode.png"]= { - ["x"]= 754, + ["x"]= 728, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/BannerEffectNode.png"]= { - ["x"]= 780, + ["x"]= 754, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/BannerResourceAreaNode.png"]= { - ["x"]= 806, + ["x"]= 780, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/BeltimberBladeNode.png"]= { - ["x"]= 832, + ["x"]= 806, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/Berserker/DmgAttackSpeed.png"]= { - ["x"]= 858, + ["x"]= 832, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/Berserker/DmgCrit.png"]= { - ["x"]= 884, + ["x"]= 858, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/Berserker/DmgLeech.png"]= { - ["x"]= 910, + ["x"]= 884, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/Berserker/DmgWarcry.png"]= { - ["x"]= 936, + ["x"]= 910, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/BleedAndPoisonMitigateNode.png"]= { - ["x"]= 0, - ["y"]= 52, + ["x"]= 936, + ["y"]= 26, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/BlockAttackDmgNode.png"]= { - ["x"]= 26, - ["y"]= 52, + ["x"]= 962, + ["y"]= 26, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/BlockSpellDmgNode.png"]= { - ["x"]= 52, + ["x"]= 0, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/Blood2.png"]= { - ["x"]= 78, + ["x"]= 26, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/BluntInstrument.png"]= { - ["x"]= 104, + ["x"]= 52, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/BowDamage.png"]= { - ["x"]= 130, + ["x"]= 78, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/Brand1.png"]= { - ["x"]= 156, + ["x"]= 104, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/Brand2.png"]= { - ["x"]= 182, + ["x"]= 130, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/BrandDmgNode.png"]= { - ["x"]= 208, + ["x"]= 156, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/BrassDomeNode.png"]= { - ["x"]= 234, + ["x"]= 182, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/Champion/AnEAttDamage.png"]= { - ["x"]= 260, + ["x"]= 208, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/Champion/AnEAura.png"]= { - ["x"]= 286, + ["x"]= 234, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/Champion/AnEFortify.png"]= { - ["x"]= 312, + ["x"]= 260, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/Champion/AnETaunt.png"]= { - ["x"]= 338, + ["x"]= 286, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/Champion/ImpalePassive.png"]= { - ["x"]= 364, + ["x"]= 312, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/ChaosDamage.png"]= { - ["x"]= 390, + ["x"]= 338, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/ChaosDamageOverTimeNode.png"]= { - ["x"]= 416, + ["x"]= 364, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/ChaosDamagenode.png"]= { - ["x"]= 442, + ["x"]= 390, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/ChaosResistNode.png"]= { - ["x"]= 468, + ["x"]= 416, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/ChaosResistNotable.png"]= { - ["x"]= 494, + ["x"]= 442, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/Chieftain/LifeRegenFireDamage.png"]= { - ["x"]= 520, + ["x"]= 468, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/Chieftain/LifeRegenStrength.png"]= { - ["x"]= 546, + ["x"]= 494, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/Chieftain/LifeRegenTotemPlacementSpeed.png"]= { - ["x"]= 572, + ["x"]= 520, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/ClawCritStrikeChanceNode.png"]= { - ["x"]= 598, + ["x"]= 546, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/ColdAndFireHybridNode.png"]= { - ["x"]= 624, + ["x"]= 572, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/ColdDamageOverTimeNode.png"]= { - ["x"]= 650, + ["x"]= 598, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/ColdDamagenode.png"]= { - ["x"]= 676, + ["x"]= 624, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/ColdResistNode.png"]= { - ["x"]= 702, + ["x"]= 650, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/CooldownWarcryNode1.png"]= { - ["x"]= 728, + ["x"]= 676, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/CorpseDamage.png"]= { - ["x"]= 754, + ["x"]= 702, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/CorpseLife.png"]= { - ["x"]= 780, + ["x"]= 728, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/CurseAreaofEffect.png"]= { - ["x"]= 806, + ["x"]= 754, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/CurseCastSpeed.png"]= { - ["x"]= 832, + ["x"]= 780, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/CurseDuration.png"]= { - ["x"]= 858, + ["x"]= 806, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/CurseEffectNode.png"]= { - ["x"]= 884, + ["x"]= 832, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/CurseManaCost.png"]= { - ["x"]= 910, + ["x"]= 858, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/CurseManaReservation.png"]= { - ["x"]= 936, + ["x"]= 884, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/CursemitigationclusterNode.png"]= { + ["x"]= 910, + ["y"]= 52, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/CybilsClawNode.png"]= { + ["x"]= 936, + ["y"]= 52, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/DamageOverTime.png"]= { + ["x"]= 962, + ["y"]= 52, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/DamageOverTimeNode.png"]= { ["x"]= 0, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/CybilsClawNode.png"]= { + ["Art/2DArt/SkillIcons/passives/DeadEye/ProjectileDamageAccuracy.png"]= { ["x"]= 26, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/DamageOverTime.png"]= { + ["Art/2DArt/SkillIcons/passives/DeadEye/ProjectileDamageAttackSpeed.png"]= { ["x"]= 52, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/DamageOverTimeNode.png"]= { + ["Art/2DArt/SkillIcons/passives/DivineFury.png"]= { ["x"]= 78, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/DeadEye/ProjectileDamageAccuracy.png"]= { + ["Art/2DArt/SkillIcons/passives/DivineWrath.png"]= { ["x"]= 104, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/DeadEye/ProjectileDamageAttackSpeed.png"]= { + ["Art/2DArt/SkillIcons/passives/DmgHeraldSkillsNode.png"]= { ["x"]= 130, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/DivineFury.png"]= { + ["Art/2DArt/SkillIcons/passives/DmgWhenChannelSkillsNode.png"]= { ["x"]= 156, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/DivineWrath.png"]= { + ["Art/2DArt/SkillIcons/passives/DodgeAtksNode.png"]= { ["x"]= 182, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/DmgHeraldSkillsNode.png"]= { + ["Art/2DArt/SkillIcons/passives/DualWieldNodeDefensive.png"]= { ["x"]= 208, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/DmgWhenChannelSkillsNode.png"]= { + ["Art/2DArt/SkillIcons/passives/DualWieldNodeOffensive.png"]= { ["x"]= 234, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/DodgeAtksNode.png"]= { + ["Art/2DArt/SkillIcons/passives/DurationofMinionsNode.png"]= { ["x"]= 260, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/DualWieldNodeDefensive.png"]= { + ["Art/2DArt/SkillIcons/passives/ElementalDamagenode.png"]= { ["x"]= 286, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/DualWieldNodeOffensive.png"]= { + ["Art/2DArt/SkillIcons/passives/ElementalResistance2.png"]= { ["x"]= 312, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/DurationofMinionsNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Elementalist/ElementalDamageAttackCasteSpeed.png"]= { ["x"]= 338, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/ElementalDamagenode.png"]= { + ["Art/2DArt/SkillIcons/passives/Elementalist/ElementalDamageElementalResistances.png"]= { ["x"]= 364, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/ElementalResistance2.png"]= { + ["Art/2DArt/SkillIcons/passives/Elementalist/ElementalDamageFreezeShockIgnite.png"]= { ["x"]= 390, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Elementalist/ElementalDamageAttackCasteSpeed.png"]= { + ["Art/2DArt/SkillIcons/passives/EmpoweredAttackWarcryNode1.png"]= { ["x"]= 416, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Elementalist/ElementalDamageElementalResistances.png"]= { + ["Art/2DArt/SkillIcons/passives/EnergyShieldNode.png"]= { ["x"]= 442, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Elementalist/ElementalDamageFreezeShockIgnite.png"]= { + ["Art/2DArt/SkillIcons/passives/EnergyshieldLeechPassivessmall.png"]= { ["x"]= 468, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/EmpoweredAttackWarcryNode1.png"]= { + ["Art/2DArt/SkillIcons/passives/EvasionNode.png"]= { ["x"]= 494, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/EnergyShieldNode.png"]= { + ["Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.png"]= { ["x"]= 520, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/EnergyshieldLeechPassivessmall.png"]= { + ["Art/2DArt/SkillIcons/passives/FireDamageOverTimeNode.png"]= { ["x"]= 546, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/EvasionNode.png"]= { + ["Art/2DArt/SkillIcons/passives/FireDamagenode.png"]= { ["x"]= 572, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.png"]= { + ["Art/2DArt/SkillIcons/passives/FireResistNode.png"]= { ["x"]= 598, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/FireDamageOverTimeNode.png"]= { + ["Art/2DArt/SkillIcons/passives/FlaskDurationnode.png"]= { ["x"]= 624, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/FireDamagenode.png"]= { + ["Art/2DArt/SkillIcons/passives/FortifyNode.png"]= { ["x"]= 650, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/FireResistNode.png"]= { + ["Art/2DArt/SkillIcons/passives/GenericWarcryNode1.png"]= { ["x"]= 676, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/FlaskDurationnode.png"]= { + ["Art/2DArt/SkillIcons/passives/GenericWarcryNode2.png"]= { ["x"]= 702, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/FortifyNode.png"]= { + ["Art/2DArt/SkillIcons/passives/GenericWarcryNode3.png"]= { ["x"]= 728, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/GenericWarcryNode1.png"]= { + ["Art/2DArt/SkillIcons/passives/Gladiator/GLADBlockChance.png"]= { ["x"]= 754, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/GenericWarcryNode2.png"]= { + ["Art/2DArt/SkillIcons/passives/Gladiator/GLADOneHand.png"]= { ["x"]= 780, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/GenericWarcryNode3.png"]= { + ["Art/2DArt/SkillIcons/passives/GolemsNode.png"]= { ["x"]= 806, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Gladiator/GLADBlockChance.png"]= { + ["Art/2DArt/SkillIcons/passives/GraceoftheGoddessNode.png"]= { ["x"]= 832, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Gladiator/GLADOneHand.png"]= { + ["Art/2DArt/SkillIcons/passives/GreenPhysicalDamageNode.png"]= { ["x"]= 858, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/GolemsNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Guardian/ArmourEnergyMeleeDamage.png"]= { ["x"]= 884, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/GraceoftheGoddessNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Guardian/ArmourEnergyShieldDefenseFromShields.png"]= { ["x"]= 910, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/GreenPhysicalDamageNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Guardian/ArmourEnergyShieldManaPool.png"]= { ["x"]= 936, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Guardian/ArmourEnergyMeleeDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/Guardian/ArmourEnergyShieldStaves.png"]= { + ["x"]= 962, + ["y"]= 78, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Guardian/GuardianHallowingFlameNode.png"]= { ["x"]= 0, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Guardian/ArmourEnergyShieldDefenseFromShields.png"]= { + ["Art/2DArt/SkillIcons/passives/Guardian/Minion Damage Armour and Energy Shield.png"]= { ["x"]= 26, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Guardian/ArmourEnergyShieldManaPool.png"]= { + ["Art/2DArt/SkillIcons/passives/Guardian/TimeOfNeed.png"]= { ["x"]= 52, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Guardian/ArmourEnergyShieldStaves.png"]= { + ["Art/2DArt/SkillIcons/passives/HalfColdHalfLightning.png"]= { ["x"]= 78, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Guardian/GuardianHallowingFlameNode.png"]= { + ["Art/2DArt/SkillIcons/passives/HeartbreakerNode.png"]= { ["x"]= 104, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Guardian/Minion Damage Armour and Energy Shield.png"]= { + ["Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.png"]= { ["x"]= 130, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Guardian/TimeOfNeed.png"]= { + ["Art/2DArt/SkillIcons/passives/HeraldDamageNotable.png"]= { ["x"]= 156, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/HalfColdHalfLightning.png"]= { + ["Art/2DArt/SkillIcons/passives/HeraldReservationNode.png"]= { ["x"]= 182, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/HeartbreakerNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Hierophant/ManaRegen.png"]= { ["x"]= 208, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.png"]= { + ["Art/2DArt/SkillIcons/passives/IgniteBleedNode.png"]= { ["x"]= 234, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/HeraldDamageNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/ImapleNode.png"]= { ["x"]= 260, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/HeraldReservationNode.png"]= { + ["Art/2DArt/SkillIcons/passives/ImpaleNode2.png"]= { ["x"]= 286, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Hierophant/ManaRegen.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreaseCritChanceNode.png"]= { ["x"]= 312, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/IgniteBleedNode.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreaseMinionLifeNode.png"]= { ["x"]= 338, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/ImapleNode.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreasedAttackDamageNode.png"]= { ["x"]= 364, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/ImpaleNode2.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreasedManaCostNode.png"]= { ["x"]= 390, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/IncreaseCritChanceNode.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreasedMaximumLifeNode.png"]= { ["x"]= 416, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/IncreaseMinionLifeNode.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreasedMinionDamageNode.png"]= { ["x"]= 442, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/IncreasedAttackDamageNode.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreasedNonDamageAilmentNode.png"]= { ["x"]= 468, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/IncreasedManaCostNode.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreasedProjectileSpeedNode.png"]= { ["x"]= 494, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/IncreasedMaximumLifeNode.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreasedSpellDamageNode.png"]= { ["x"]= 520, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/IncreasedMinionDamageNode.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreasedWarcryNode.png"]= { ["x"]= 546, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/IncreasedNonDamageAilmentNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageAttackCasteSpeed.png"]= { ["x"]= 572, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/IncreasedProjectileSpeedNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageAvoidElementalStatusEffects.png"]= { ["x"]= 598, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/IncreasedSpellDamageNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageCasteSpeed.png"]= { ["x"]= 624, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/IncreasedWarcryNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageElementalPenetration.png"]= { ["x"]= 650, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageAttackCasteSpeed.png"]= { + ["Art/2DArt/SkillIcons/passives/JacktheaxeNode.png"]= { ["x"]= 676, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageAvoidElementalStatusEffects.png"]= { + ["Art/2DArt/SkillIcons/passives/Juggernaut/IncreasedArmourAttackDamage.png"]= { ["x"]= 702, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageCasteSpeed.png"]= { + ["Art/2DArt/SkillIcons/passives/Juggernaut/IncreasedArmourAttackSpeed.png"]= { ["x"]= 728, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageElementalPenetration.png"]= { + ["Art/2DArt/SkillIcons/passives/Juggernaut/IncreasedArmourLifeRegeneration.png"]= { ["x"]= 754, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/JacktheaxeNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Juggernaut/IncreasedArmourMovementSpeed.png"]= { ["x"]= 780, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Juggernaut/IncreasedArmourAttackDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/Juggernaut/IncreasedArmourStunDuration.png"]= { ["x"]= 806, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Juggernaut/IncreasedArmourAttackSpeed.png"]= { + ["Art/2DArt/SkillIcons/passives/Juggernaut/JuggernautArmourNotable.png"]= { ["x"]= 832, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Juggernaut/IncreasedArmourLifeRegeneration.png"]= { + ["Art/2DArt/SkillIcons/passives/KeystoneArmourMaster.png"]= { ["x"]= 858, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Juggernaut/IncreasedArmourMovementSpeed.png"]= { + ["Art/2DArt/SkillIcons/passives/KiloavaShieldNode.png"]= { ["x"]= 884, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Juggernaut/IncreasedArmourStunDuration.png"]= { + ["Art/2DArt/SkillIcons/passives/KitavasHungerNode.png"]= { ["x"]= 910, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Juggernaut/JuggernautArmourNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/LifeAndEnergyShield.png"]= { ["x"]= 936, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/KeystoneArmourMaster.png"]= { + ["Art/2DArt/SkillIcons/passives/LifeAndReducedManaCost.png"]= { + ["x"]= 962, + ["y"]= 104, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/LifeManaFlasksrecoverynode.png"]= { ["x"]= 0, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/KiloavaShieldNode.png"]= { + ["Art/2DArt/SkillIcons/passives/LifeRecoupNode.png"]= { ["x"]= 26, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/KitavasHungerNode.png"]= { + ["Art/2DArt/SkillIcons/passives/LifeandCurses.png"]= { ["x"]= 52, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/LifeAndEnergyShield.png"]= { + ["Art/2DArt/SkillIcons/passives/LifeandMana.png"]= { ["x"]= 78, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/LifeAndReducedManaCost.png"]= { + ["Art/2DArt/SkillIcons/passives/LightningDamagenode.png"]= { ["x"]= 104, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/LifeManaFlasksrecoverynode.png"]= { + ["Art/2DArt/SkillIcons/passives/LightningResistNode.png"]= { ["x"]= 130, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/LifeRecoupNode.png"]= { + ["Art/2DArt/SkillIcons/passives/MaataSceptreNode.png"]= { ["x"]= 156, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/LifeandCurses.png"]= { + ["Art/2DArt/SkillIcons/passives/MaceElemental.png"]= { ["x"]= 182, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/LifeandMana.png"]= { + ["Art/2DArt/SkillIcons/passives/ManaAndEnergyShield.png"]= { ["x"]= 208, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/LightningDamagenode.png"]= { + ["Art/2DArt/SkillIcons/passives/ManaLeechThemedNode.png"]= { ["x"]= 234, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/LightningResistNode.png"]= { + ["Art/2DArt/SkillIcons/passives/ManaandCurses2.png"]= { ["x"]= 260, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/MaataSceptreNode.png"]= { + ["Art/2DArt/SkillIcons/passives/MarkNode.png"]= { ["x"]= 286, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/MaceElemental.png"]= { + ["Art/2DArt/SkillIcons/passives/MasteryBlank.png"]= { ["x"]= 312, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/ManaAndEnergyShield.png"]= { + ["Art/2DArt/SkillIcons/passives/MawOfConquestNode.png"]= { ["x"]= 338, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/ManaLeechThemedNode.png"]= { + ["Art/2DArt/SkillIcons/passives/MaxManaNode.png"]= { ["x"]= 364, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/ManaandCurses2.png"]= { + ["Art/2DArt/SkillIcons/passives/MeleeAoENode.png"]= { ["x"]= 390, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/MarkNode.png"]= { + ["Art/2DArt/SkillIcons/passives/MeleeCriticalStrikeChanceNode.png"]= { ["x"]= 416, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/MasteryBlank.png"]= { + ["Art/2DArt/SkillIcons/passives/MeleeCriticalStrikeMultiplierNode.png"]= { ["x"]= 442, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/MawOfConquestNode.png"]= { + ["Art/2DArt/SkillIcons/passives/MeleeFireNode.png"]= { ["x"]= 468, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/MaxManaNode.png"]= { + ["Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.png"]= { ["x"]= 494, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/MeleeAoENode.png"]= { + ["Art/2DArt/SkillIcons/passives/MineManaReservationNode.png"]= { ["x"]= 520, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/MeleeCriticalStrikeChanceNode.png"]= { + ["Art/2DArt/SkillIcons/passives/MinionAccuracyDamage.png"]= { ["x"]= 546, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/MeleeCriticalStrikeMultiplierNode.png"]= { + ["Art/2DArt/SkillIcons/passives/MinionChaosResistanceNode.png"]= { ["x"]= 572, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/MeleeFireNode.png"]= { + ["Art/2DArt/SkillIcons/passives/MinionDmgHeraldSkillsNode.png"]= { ["x"]= 598, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.png"]= { + ["Art/2DArt/SkillIcons/passives/MinionElementalResistancesNode.png"]= { ["x"]= 624, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/MineManaReservationNode.png"]= { + ["Art/2DArt/SkillIcons/passives/MovementSpeedandEvasionPassive.png"]= { ["x"]= 650, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/MinionAccuracyDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/MysticRefractorNode.png"]= { ["x"]= 676, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/MinionChaosResistanceNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Necromancer/CorpseConsumptionNode.png"]= { ["x"]= 702, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/MinionDmgHeraldSkillsNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Necromancer/IncreasedMinionDamageIncreasedMinionLife.png"]= { ["x"]= 728, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/MinionElementalResistancesNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Necromancer/IncreasedMinionDamageIncreasedSkillDuration.png"]= { ["x"]= 754, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/MovementSpeedandEvasionPassive.png"]= { + ["Art/2DArt/SkillIcons/passives/Necromancer/ManaNode.png"]= { ["x"]= 780, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/MysticRefractorNode.png"]= { + ["Art/2DArt/SkillIcons/passives/NodeAxeandSwordDamage.png"]= { ["x"]= 806, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Necromancer/CorpseConsumptionNode.png"]= { + ["Art/2DArt/SkillIcons/passives/NodeBowDamage.png"]= { ["x"]= 832, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Necromancer/IncreasedMinionDamageIncreasedMinionLife.png"]= { + ["Art/2DArt/SkillIcons/passives/NodeDaggerandClawDamage.png"]= { ["x"]= 858, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Necromancer/IncreasedMinionDamageIncreasedSkillDuration.png"]= { + ["Art/2DArt/SkillIcons/passives/NodeDualWieldingDamage.png"]= { ["x"]= 884, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Necromancer/ManaNode.png"]= { + ["Art/2DArt/SkillIcons/passives/NodeHoldingShieldDamage.png"]= { ["x"]= 910, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/NodeAxeandSwordDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/NodeMaceandStaffDamage.png"]= { ["x"]= 936, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/NodeBowDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/NodeTwoHandedMeleeDamage.png"]= { + ["x"]= 962, + ["y"]= 130, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/NodeWandDamage.png"]= { ["x"]= 0, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/NodeDaggerandClawDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/Occultist/EnergyShieldChaos.png"]= { ["x"]= 26, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/NodeDualWieldingDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/Occultist/EnergyShieldCold.png"]= { ["x"]= 52, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/NodeHoldingShieldDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/Occultist/IncreasedEnergyShieldAttackAndCastSpeed.png"]= { ["x"]= 78, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/NodeMaceandStaffDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/Occultist/IncreasedEnergyShieldCriticalStrikeChance.png"]= { ["x"]= 104, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/NodeTwoHandedMeleeDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/Occultist/IncreasedEnergyShieldManaReservation.png"]= { ["x"]= 130, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/NodeWandDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/Occultist/IncreasedEnergyShieldMaximumMana.png"]= { ["x"]= 156, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Occultist/EnergyShieldChaos.png"]= { + ["Art/2DArt/SkillIcons/passives/OneHandedPhysicalAndLeechNode.png"]= { ["x"]= 182, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Occultist/EnergyShieldCold.png"]= { + ["Art/2DArt/SkillIcons/passives/OneHandedPhysicalAndLeechNotable.png"]= { ["x"]= 208, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Occultist/IncreasedEnergyShieldAttackAndCastSpeed.png"]= { + ["Art/2DArt/SkillIcons/passives/PathFinder/FlaskEffectDamageOverTime.png"]= { ["x"]= 234, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Occultist/IncreasedEnergyShieldCriticalStrikeChance.png"]= { + ["Art/2DArt/SkillIcons/passives/PathFinder/FlaskEffectElementalResistance.png"]= { ["x"]= 260, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Occultist/IncreasedEnergyShieldManaReservation.png"]= { + ["Art/2DArt/SkillIcons/passives/PathFinder/FlaskEffectFlaskDuration.png"]= { ["x"]= 286, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Occultist/IncreasedEnergyShieldMaximumMana.png"]= { + ["Art/2DArt/SkillIcons/passives/PhysicalDamageNode.png"]= { ["x"]= 312, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/OneHandedPhysicalAndLeechNode.png"]= { + ["Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.png"]= { ["x"]= 338, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/OneHandedPhysicalAndLeechNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimenode3.png"]= { ["x"]= 364, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/PathFinder/FlaskEffectDamageOverTime.png"]= { + ["Art/2DArt/SkillIcons/passives/PhysicalDamagenode2.png"]= { ["x"]= 390, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/PathFinder/FlaskEffectElementalResistance.png"]= { + ["Art/2DArt/SkillIcons/passives/PhysicalandChaosDamage.png"]= { ["x"]= 416, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/PathFinder/FlaskEffectFlaskDuration.png"]= { + ["Art/2DArt/SkillIcons/passives/Poison.png"]= { ["x"]= 442, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/PhysicalDamageNode.png"]= { + ["Art/2DArt/SkillIcons/passives/PoisonSpellsNode.png"]= { ["x"]= 468, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Primalist/PrimalistNode.png"]= { ["x"]= 494, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimenode3.png"]= { + ["Art/2DArt/SkillIcons/passives/PrimordialCaneNode.png"]= { ["x"]= 520, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/PhysicalDamagenode2.png"]= { + ["Art/2DArt/SkillIcons/passives/ProjectileDmgNode.png"]= { ["x"]= 546, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/PhysicalandChaosDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/ProjectilesNode.png"]= { ["x"]= 572, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Poison.png"]= { + ["Art/2DArt/SkillIcons/passives/ProjectilesNode2.png"]= { ["x"]= 598, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/PoisonSpellsNode.png"]= { + ["Art/2DArt/SkillIcons/passives/ProsperosProtectionNode.png"]= { ["x"]= 624, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Primalist/PrimalistNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Rage.png"]= { ["x"]= 650, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/PrimordialCaneNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Raider/IncreasedElementalDamage.png"]= { ["x"]= 676, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/ProjectileDmgNode.png"]= { + ["Art/2DArt/SkillIcons/passives/RangedTotemAttackSpeed.png"]= { ["x"]= 702, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/ProjectilesNode.png"]= { + ["Art/2DArt/SkillIcons/passives/RangedTotemDamage.png"]= { ["x"]= 728, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/ProjectilesNode2.png"]= { + ["Art/2DArt/SkillIcons/passives/RedAttackSmallPassive.png"]= { ["x"]= 754, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/ProsperosProtectionNode.png"]= { + ["Art/2DArt/SkillIcons/passives/ReducedManaCostNode.png"]= { ["x"]= 780, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Rage.png"]= { + ["Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.png"]= { ["x"]= 806, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Raider/IncreasedElementalDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/RetaliationNode1.png"]= { ["x"]= 832, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/RangedTotemAttackSpeed.png"]= { + ["Art/2DArt/SkillIcons/passives/RetaliationNode2.png"]= { ["x"]= 858, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/RangedTotemDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/RetaliationNode3.png"]= { ["x"]= 884, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/RedAttackSmallPassive.png"]= { + ["Art/2DArt/SkillIcons/passives/RetaliationNode4.png"]= { ["x"]= 910, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/ReducedManaCostNode.png"]= { + ["Art/2DArt/SkillIcons/passives/RetaliationNode5.png"]= { ["x"]= 936, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Saboteur/ElementalDamageElementalResistance.png"]= { + ["x"]= 962, + ["y"]= 156, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Saboteur/ElementalDamageMines.png"]= { ["x"]= 0, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/RetaliationNode1.png"]= { + ["Art/2DArt/SkillIcons/passives/Saboteur/ElementalDamageMovementSpeed.png"]= { ["x"]= 26, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/RetaliationNode2.png"]= { + ["Art/2DArt/SkillIcons/passives/SareshBloodlineNode.png"]= { ["x"]= 52, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/RetaliationNode3.png"]= { + ["Art/2DArt/SkillIcons/passives/SharpandBrittle.png"]= { ["x"]= 78, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/RetaliationNode4.png"]= { + ["Art/2DArt/SkillIcons/passives/ShieldAttackDamage.png"]= { ["x"]= 104, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/RetaliationNode5.png"]= { + ["Art/2DArt/SkillIcons/passives/ShieldNodeOffensive.png"]= { ["x"]= 130, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Saboteur/ElementalDamageElementalResistance.png"]= { + ["Art/2DArt/SkillIcons/passives/Slayer/2HdmgAOE.png"]= { ["x"]= 156, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Saboteur/ElementalDamageMines.png"]= { + ["Art/2DArt/SkillIcons/passives/Slayer/2HdmgCritStrikeMultiplier.png"]= { ["x"]= 182, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Saboteur/ElementalDamageMovementSpeed.png"]= { + ["Art/2DArt/SkillIcons/passives/Slayer/2HdmgFrenzyEnduranceCharge.png"]= { ["x"]= 208, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/SareshBloodlineNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Slayer/2HdmgLeech.png"]= { ["x"]= 234, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/SharpandBrittle.png"]= { + ["Art/2DArt/SkillIcons/passives/Slayer/2HdmgSpeed.png"]= { ["x"]= 260, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/ShieldAttackDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/SpeedWarcryNode1.png"]= { ["x"]= 286, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/ShieldNodeOffensive.png"]= { + ["Art/2DArt/SkillIcons/passives/SpellMultiplyer2.png"]= { ["x"]= 312, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Slayer/2HdmgAOE.png"]= { + ["Art/2DArt/SkillIcons/passives/SpellSuppresionNode.png"]= { ["x"]= 338, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Slayer/2HdmgCritStrikeMultiplier.png"]= { + ["Art/2DArt/SkillIcons/passives/SpellSuppressionEnergyShield.png"]= { ["x"]= 364, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Slayer/2HdmgFrenzyEnduranceCharge.png"]= { + ["Art/2DArt/SkillIcons/passives/SpellSuppressionLifeFlasks.png"]= { ["x"]= 390, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Slayer/2HdmgLeech.png"]= { + ["Art/2DArt/SkillIcons/passives/StaffNodeDefensive.png"]= { ["x"]= 416, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Slayer/2HdmgSpeed.png"]= { + ["Art/2DArt/SkillIcons/passives/StaffNodeOffensive.png"]= { ["x"]= 442, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/SpeedWarcryNode1.png"]= { + ["Art/2DArt/SkillIcons/passives/StanceSmallPassive.png"]= { ["x"]= 468, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/SpellMultiplyer2.png"]= { + ["Art/2DArt/SkillIcons/passives/StancesNode.png"]= { ["x"]= 494, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/SpellSuppresionNode.png"]= { + ["Art/2DArt/SkillIcons/passives/StrikeRangeNode.png"]= { ["x"]= 520, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/SpellSuppressionEnergyShield.png"]= { + ["Art/2DArt/SkillIcons/passives/TearOfPurityNode.png"]= { ["x"]= 546, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/SpellSuppressionLifeFlasks.png"]= { + ["Art/2DArt/SkillIcons/passives/TerminusEstNode.png"]= { ["x"]= 572, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/StaffNodeDefensive.png"]= { + ["Art/2DArt/SkillIcons/passives/TheBurdenOfTruthNode.png"]= { ["x"]= 598, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/StaffNodeOffensive.png"]= { + ["Art/2DArt/SkillIcons/passives/TheBurdenofShadowsNode.png"]= { ["x"]= 624, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/StanceSmallPassive.png"]= { + ["Art/2DArt/SkillIcons/passives/TinctureFlaskNode1.png"]= { ["x"]= 650, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/StancesNode.png"]= { + ["Art/2DArt/SkillIcons/passives/TinctureNode1.png"]= { ["x"]= 676, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/StrikeRangeNode.png"]= { + ["Art/2DArt/SkillIcons/passives/TinctureNode2.png"]= { ["x"]= 702, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/TearOfPurityNode.png"]= { + ["Art/2DArt/SkillIcons/passives/TinctureNode3.png"]= { ["x"]= 728, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/TerminusEstNode.png"]= { + ["Art/2DArt/SkillIcons/passives/TotemDmgNode.png"]= { ["x"]= 754, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/TheBurdenOfTruthNode.png"]= { + ["Art/2DArt/SkillIcons/passives/TrapAndMineDmgNode.png"]= { ["x"]= 780, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/TheBurdenofShadowsNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Trickster/DefensiveNodeTrickster.png"]= { ["x"]= 806, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/TinctureFlaskNode1.png"]= { + ["Art/2DArt/SkillIcons/passives/Trickster/OffensiveNodeTrickster.png"]= { ["x"]= 832, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/TinctureNode1.png"]= { + ["Art/2DArt/SkillIcons/passives/VersusoBootsNode.png"]= { ["x"]= 858, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/TinctureNode2.png"]= { + ["Art/2DArt/SkillIcons/passives/VictariosJacketNode.png"]= { ["x"]= 884, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/TinctureNode3.png"]= { + ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanCurses2.png"]= { ["x"]= 910, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/TotemDmgNode.png"]= { + ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanNode.png"]= { ["x"]= 936, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/TrapAndMineDmgNode.png"]= { + ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanSpecialCurse1.png"]= { + ["x"]= 962, + ["y"]= 182, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanSpecialCurse2.png"]= { ["x"]= 0, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Trickster/DefensiveNodeTrickster.png"]= { + ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanSpecialCurse3.png"]= { ["x"]= 26, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Trickster/OffensiveNodeTrickster.png"]= { + ["Art/2DArt/SkillIcons/passives/WandCritical.png"]= { ["x"]= 52, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/VersusoBootsNode.png"]= { + ["Art/2DArt/SkillIcons/passives/WandSpeedAccuracyNode.png"]= { ["x"]= 78, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/VictariosJacketNode.png"]= { + ["Art/2DArt/SkillIcons/passives/WarCryCooldown.png"]= { ["x"]= 104, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanCurses2.png"]= { + ["Art/2DArt/SkillIcons/passives/WarcryBuffEffectNotable.png"]= { ["x"]= 130, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Warden/SpellSuppressionEvasion.png"]= { ["x"]= 156, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanSpecialCurse1.png"]= { + ["Art/2DArt/SkillIcons/passives/Warden/TincturesNode.png"]= { ["x"]= 182, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanSpecialCurse2.png"]= { + ["Art/2DArt/SkillIcons/passives/Warden/WardenNode.png"]= { ["x"]= 208, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanSpecialCurse3.png"]= { + ["Art/2DArt/SkillIcons/passives/Warden/WardenTracking.png"]= { ["x"]= 234, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/WandCritical.png"]= { + ["Art/2DArt/SkillIcons/passives/WarpedTimepieceNode.png"]= { ["x"]= 260, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/WandSpeedAccuracyNode.png"]= { + ["Art/2DArt/SkillIcons/passives/WidowhailBowNode.png"]= { ["x"]= 286, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/WarCryCooldown.png"]= { + ["Art/2DArt/SkillIcons/passives/accuracy.png"]= { ["x"]= 312, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/WarcryBuffEffectNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/accuracy2h.png"]= { ["x"]= 338, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Warden/SpellSuppressionEvasion.png"]= { + ["Art/2DArt/SkillIcons/passives/accuracydex.png"]= { ["x"]= 364, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Warden/TincturesNode.png"]= { + ["Art/2DArt/SkillIcons/passives/accuracysword.png"]= { ["x"]= 390, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Warden/WardenNode.png"]= { + ["Art/2DArt/SkillIcons/passives/arcaneradience.png"]= { ["x"]= 416, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Warden/WardenTracking.png"]= { + ["Art/2DArt/SkillIcons/passives/areaofeffect.png"]= { ["x"]= 442, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/WarpedTimepieceNode.png"]= { + ["Art/2DArt/SkillIcons/passives/attackspeed.png"]= { ["x"]= 468, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/WidowhailBowNode.png"]= { + ["Art/2DArt/SkillIcons/passives/attackspeed2h.png"]= { ["x"]= 494, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/accuracy.png"]= { + ["Art/2DArt/SkillIcons/passives/attackspeedaxe.png"]= { ["x"]= 520, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/accuracy2h.png"]= { + ["Art/2DArt/SkillIcons/passives/attackspeedbow.png"]= { ["x"]= 546, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/accuracydex.png"]= { + ["Art/2DArt/SkillIcons/passives/attackspeedclaw.png"]= { ["x"]= 572, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/accuracysword.png"]= { + ["Art/2DArt/SkillIcons/passives/attackspeeddagger.png"]= { ["x"]= 598, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/arcaneradience.png"]= { + ["Art/2DArt/SkillIcons/passives/attackspeeddual.png"]= { ["x"]= 624, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/areaofeffect.png"]= { + ["Art/2DArt/SkillIcons/passives/attackspeedmace.png"]= { ["x"]= 650, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/attackspeed.png"]= { + ["Art/2DArt/SkillIcons/passives/attackspeedsworddex.png"]= { ["x"]= 676, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/attackspeed2h.png"]= { + ["Art/2DArt/SkillIcons/passives/auraareaofeffect.png"]= { ["x"]= 702, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/attackspeedaxe.png"]= { + ["Art/2DArt/SkillIcons/passives/auraeffect.png"]= { ["x"]= 728, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/attackspeedbow.png"]= { + ["Art/2DArt/SkillIcons/passives/avoidburning.png"]= { ["x"]= 754, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/attackspeedclaw.png"]= { + ["Art/2DArt/SkillIcons/passives/avoidchilling.png"]= { ["x"]= 780, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/attackspeeddagger.png"]= { + ["Art/2DArt/SkillIcons/passives/axedmgspeed.png"]= { ["x"]= 806, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/attackspeeddual.png"]= { + ["Art/2DArt/SkillIcons/passives/blankDex.png"]= { ["x"]= 832, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/attackspeedmace.png"]= { + ["Art/2DArt/SkillIcons/passives/blankInt.png"]= { ["x"]= 858, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/attackspeedsworddex.png"]= { + ["Art/2DArt/SkillIcons/passives/blankStr.png"]= { ["x"]= 884, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/auraareaofeffect.png"]= { + ["Art/2DArt/SkillIcons/passives/blastradius.png"]= { ["x"]= 910, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/auraeffect.png"]= { + ["Art/2DArt/SkillIcons/passives/blockstaff.png"]= { ["x"]= 936, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/avoidburning.png"]= { + ["Art/2DArt/SkillIcons/passives/blockstr.png"]= { + ["x"]= 962, + ["y"]= 208, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/castavoidinterruption.png"]= { ["x"]= 0, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/avoidchilling.png"]= { + ["Art/2DArt/SkillIcons/passives/castspeed.png"]= { ["x"]= 26, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/axedmgspeed.png"]= { + ["Art/2DArt/SkillIcons/passives/chargedex.png"]= { ["x"]= 52, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/blankDex.png"]= { + ["Art/2DArt/SkillIcons/passives/chargeint.png"]= { ["x"]= 78, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/blankInt.png"]= { + ["Art/2DArt/SkillIcons/passives/chargestr.png"]= { ["x"]= 104, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/blankStr.png"]= { + ["Art/2DArt/SkillIcons/passives/clawmasterydex.png"]= { ["x"]= 130, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/blastradius.png"]= { + ["Art/2DArt/SkillIcons/passives/clustersLinknode1.png"]= { ["x"]= 156, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/blockstaff.png"]= { + ["Art/2DArt/SkillIcons/passives/clustersLinknode2.png"]= { ["x"]= 182, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/blockstr.png"]= { + ["Art/2DArt/SkillIcons/passives/colddamage.png"]= { ["x"]= 208, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/castavoidinterruption.png"]= { + ["Art/2DArt/SkillIcons/passives/coldresist.png"]= { ["x"]= 234, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/castspeed.png"]= { + ["Art/2DArt/SkillIcons/passives/criticalbow.png"]= { ["x"]= 260, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/chargedex.png"]= { + ["Art/2DArt/SkillIcons/passives/criticalclaw.png"]= { ["x"]= 286, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/chargeint.png"]= { + ["Art/2DArt/SkillIcons/passives/criticaldaggerdex.png"]= { ["x"]= 312, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/chargestr.png"]= { + ["Art/2DArt/SkillIcons/passives/criticaldaggerint.png"]= { ["x"]= 338, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/clawmasterydex.png"]= { + ["Art/2DArt/SkillIcons/passives/criticalstrikechance.png"]= { ["x"]= 364, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/clustersLinknode1.png"]= { + ["Art/2DArt/SkillIcons/passives/criticalstrikechance2.png"]= { ["x"]= 390, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/clustersLinknode2.png"]= { + ["Art/2DArt/SkillIcons/passives/criticalstrikemultiplier.png"]= { ["x"]= 416, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/colddamage.png"]= { + ["Art/2DArt/SkillIcons/passives/criticalstrikemultiplier2.png"]= { ["x"]= 442, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/coldresist.png"]= { + ["Art/2DArt/SkillIcons/passives/critstrchnc.png"]= { ["x"]= 468, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/criticalbow.png"]= { + ["Art/2DArt/SkillIcons/passives/crystalskin.png"]= { ["x"]= 494, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/criticalclaw.png"]= { + ["Art/2DArt/SkillIcons/passives/damage.png"]= { ["x"]= 520, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/criticaldaggerdex.png"]= { + ["Art/2DArt/SkillIcons/passives/damage_blue.png"]= { ["x"]= 546, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/criticaldaggerint.png"]= { + ["Art/2DArt/SkillIcons/passives/damageaxe.png"]= { ["x"]= 572, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/criticalstrikechance.png"]= { + ["Art/2DArt/SkillIcons/passives/damagedualwield.png"]= { ["x"]= 598, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/criticalstrikechance2.png"]= { + ["Art/2DArt/SkillIcons/passives/damagedualwieldgreen.png"]= { ["x"]= 624, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/criticalstrikemultiplier.png"]= { + ["Art/2DArt/SkillIcons/passives/damagemelee.png"]= { ["x"]= 650, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/criticalstrikemultiplier2.png"]= { + ["Art/2DArt/SkillIcons/passives/damagespells.png"]= { ["x"]= 676, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/critstrchnc.png"]= { + ["Art/2DArt/SkillIcons/passives/damagestaff.png"]= { ["x"]= 702, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/crystalskin.png"]= { + ["Art/2DArt/SkillIcons/passives/damagesword.png"]= { ["x"]= 728, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/damage.png"]= { + ["Art/2DArt/SkillIcons/passives/dmgreduction.png"]= { ["x"]= 754, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/damage_blue.png"]= { + ["Art/2DArt/SkillIcons/passives/dualwieldaccuracy.png"]= { ["x"]= 780, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/damageaxe.png"]= { + ["Art/2DArt/SkillIcons/passives/dualwieldblock.png"]= { ["x"]= 806, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/damagedualwield.png"]= { + ["Art/2DArt/SkillIcons/passives/elementaldamage.png"]= { ["x"]= 832, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/damagedualwieldgreen.png"]= { + ["Art/2DArt/SkillIcons/passives/energyshield.png"]= { ["x"]= 858, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/damagemelee.png"]= { + ["Art/2DArt/SkillIcons/passives/evade.png"]= { ["x"]= 884, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/damagespells.png"]= { + ["Art/2DArt/SkillIcons/passives/evadepercentage.png"]= { ["x"]= 910, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/damagestaff.png"]= { + ["Art/2DArt/SkillIcons/passives/evasion.png"]= { ["x"]= 936, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/damagesword.png"]= { + ["Art/2DArt/SkillIcons/passives/firedamage.png"]= { + ["x"]= 962, + ["y"]= 234, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/firedamageint.png"]= { ["x"]= 0, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/dmgreduction.png"]= { + ["Art/2DArt/SkillIcons/passives/firedamagestr.png"]= { ["x"]= 26, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/dualwieldaccuracy.png"]= { + ["Art/2DArt/SkillIcons/passives/fireresist.png"]= { ["x"]= 52, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/dualwieldblock.png"]= { + ["Art/2DArt/SkillIcons/passives/flaskdex.png"]= { ["x"]= 78, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/elementaldamage.png"]= { + ["Art/2DArt/SkillIcons/passives/flaskint.png"]= { ["x"]= 104, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/energyshield.png"]= { + ["Art/2DArt/SkillIcons/passives/flaskstr.png"]= { ["x"]= 130, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/evade.png"]= { + ["Art/2DArt/SkillIcons/passives/increased armor.png"]= { ["x"]= 156, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/evadepercentage.png"]= { + ["Art/2DArt/SkillIcons/passives/increasedarmorandlife.png"]= { ["x"]= 182, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/evasion.png"]= { + ["Art/2DArt/SkillIcons/passives/increasedrunspeeddex.png"]= { ["x"]= 208, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/firedamage.png"]= { + ["Art/2DArt/SkillIcons/passives/innerforce.png"]= { ["x"]= 234, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/firedamageint.png"]= { + ["Art/2DArt/SkillIcons/passives/knockback.png"]= { ["x"]= 260, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/firedamagestr.png"]= { + ["Art/2DArt/SkillIcons/passives/life1.png"]= { ["x"]= 286, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/fireresist.png"]= { + ["Art/2DArt/SkillIcons/passives/lifegainpertarget.png"]= { ["x"]= 312, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/flaskdex.png"]= { + ["Art/2DArt/SkillIcons/passives/lifeleech.png"]= { ["x"]= 338, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/flaskint.png"]= { + ["Art/2DArt/SkillIcons/passives/lifemana.png"]= { ["x"]= 364, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/flaskstr.png"]= { + ["Art/2DArt/SkillIcons/passives/lifepercentage.png"]= { ["x"]= 390, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/increased armor.png"]= { + ["Art/2DArt/SkillIcons/passives/lightningdex.png"]= { ["x"]= 416, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/increasedarmorandlife.png"]= { + ["Art/2DArt/SkillIcons/passives/lightningint.png"]= { ["x"]= 442, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/increasedrunspeeddex.png"]= { + ["Art/2DArt/SkillIcons/passives/lightningstr.png"]= { ["x"]= 468, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/innerforce.png"]= { + ["Art/2DArt/SkillIcons/passives/macecritdmgspeed.png"]= { ["x"]= 494, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/knockback.png"]= { + ["Art/2DArt/SkillIcons/passives/macedmg.png"]= { ["x"]= 520, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/life1.png"]= { + ["Art/2DArt/SkillIcons/passives/mana.png"]= { ["x"]= 546, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/lifegainpertarget.png"]= { + ["Art/2DArt/SkillIcons/passives/manaregeneration.png"]= { ["x"]= 572, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/lifeleech.png"]= { + ["Art/2DArt/SkillIcons/passives/manareservationreduction.png"]= { ["x"]= 598, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/lifemana.png"]= { + ["Art/2DArt/SkillIcons/passives/manastr.png"]= { ["x"]= 624, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/lifepercentage.png"]= { + ["Art/2DArt/SkillIcons/passives/masterydaggerdex.png"]= { ["x"]= 650, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/lightningdex.png"]= { + ["Art/2DArt/SkillIcons/passives/masterysword.png"]= { ["x"]= 676, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/lightningint.png"]= { + ["Art/2DArt/SkillIcons/passives/masterywand.png"]= { ["x"]= 702, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/lightningstr.png"]= { + ["Art/2DArt/SkillIcons/passives/meleeattackspeed.png"]= { ["x"]= 728, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/macecritdmgspeed.png"]= { + ["Art/2DArt/SkillIcons/passives/minionattackspeed.png"]= { ["x"]= 754, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/macedmg.png"]= { + ["Art/2DArt/SkillIcons/passives/minionblockchance.png"]= { ["x"]= 780, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/mana.png"]= { + ["Art/2DArt/SkillIcons/passives/miniondamage.png"]= { ["x"]= 806, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/manaregeneration.png"]= { + ["Art/2DArt/SkillIcons/passives/miniondamageBlue.png"]= { ["x"]= 832, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/manareservationreduction.png"]= { + ["Art/2DArt/SkillIcons/passives/minionlife.png"]= { ["x"]= 858, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/manastr.png"]= { + ["Art/2DArt/SkillIcons/passives/onehanddamage.png"]= { ["x"]= 884, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/masterydaggerdex.png"]= { + ["Art/2DArt/SkillIcons/passives/onehandspeed.png"]= { ["x"]= 910, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/masterysword.png"]= { + ["Art/2DArt/SkillIcons/passives/plusdexterity.png"]= { ["x"]= 936, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/masterywand.png"]= { + ["Art/2DArt/SkillIcons/passives/plusintelligence.png"]= { + ["x"]= 962, + ["y"]= 260, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/plusintelligencedexterity.png"]= { ["x"]= 0, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/meleeattackspeed.png"]= { + ["Art/2DArt/SkillIcons/passives/plusstrength.png"]= { ["x"]= 26, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/minionattackspeed.png"]= { + ["Art/2DArt/SkillIcons/passives/plusstrengthdexterity.png"]= { ["x"]= 52, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/minionblockchance.png"]= { + ["Art/2DArt/SkillIcons/passives/plusstrengthintelligence.png"]= { ["x"]= 78, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/miniondamage.png"]= { + ["Art/2DArt/SkillIcons/passives/projectilespeed.png"]= { ["x"]= 104, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/miniondamageBlue.png"]= { + ["Art/2DArt/SkillIcons/passives/shieldblock.png"]= { ["x"]= 130, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/minionlife.png"]= { + ["Art/2DArt/SkillIcons/passives/skillduration.png"]= { ["x"]= 156, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/onehanddamage.png"]= { + ["Art/2DArt/SkillIcons/passives/spellcritical.png"]= { ["x"]= 182, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/onehandspeed.png"]= { + ["Art/2DArt/SkillIcons/passives/staffaccuracy.png"]= { ["x"]= 208, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/plusdexterity.png"]= { + ["Art/2DArt/SkillIcons/passives/staffspeed.png"]= { ["x"]= 234, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/plusintelligence.png"]= { + ["Art/2DArt/SkillIcons/passives/stundex.png"]= { ["x"]= 260, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/plusintelligencedexterity.png"]= { + ["Art/2DArt/SkillIcons/passives/stunmace.png"]= { ["x"]= 286, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/plusstrength.png"]= { + ["Art/2DArt/SkillIcons/passives/stunstr.png"]= { ["x"]= 312, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/plusstrengthdexterity.png"]= { + ["Art/2DArt/SkillIcons/passives/tempdex.png"]= { ["x"]= 338, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/plusstrengthintelligence.png"]= { + ["Art/2DArt/SkillIcons/passives/tempint.png"]= { ["x"]= 364, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/projectilespeed.png"]= { + ["Art/2DArt/SkillIcons/passives/totemandbrandattackspeed.png"]= { ["x"]= 390, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/shieldblock.png"]= { + ["Art/2DArt/SkillIcons/passives/totemandbranddamage.png"]= { ["x"]= 416, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/skillduration.png"]= { + ["Art/2DArt/SkillIcons/passives/totemandbrandrange.png"]= { ["x"]= 442, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/spellcritical.png"]= { + ["Art/2DArt/SkillIcons/passives/totemattackspeed.png"]= { ["x"]= 468, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/staffaccuracy.png"]= { + ["Art/2DArt/SkillIcons/passives/totemlife.png"]= { ["x"]= 494, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/staffspeed.png"]= { + ["Art/2DArt/SkillIcons/passives/trapcriticalstrike.png"]= { ["x"]= 520, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/stundex.png"]= { + ["Art/2DArt/SkillIcons/passives/trapdamage.png"]= { ["x"]= 546, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/stunmace.png"]= { + ["Art/2DArt/SkillIcons/passives/trapsduration.png"]= { ["x"]= 572, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/stunstr.png"]= { + ["Art/2DArt/SkillIcons/passives/trapsradius.png"]= { ["x"]= 598, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/tempdex.png"]= { + ["Art/2DArt/SkillIcons/passives/trapsspeed.png"]= { ["x"]= 624, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/tempint.png"]= { + ["Art/2DArt/SkillIcons/passives/weaponelementaldamagepercentage.png"]= { ["x"]= 650, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/totemandbrandattackspeed.png"]= { + ["Art/2DArt/SkillIcons/ArohonguiTribeSkill.png"]= { ["x"]= 676, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/totemandbranddamage.png"]= { + ["Art/2DArt/SkillIcons/HinekoraTribeSkill.png"]= { ["x"]= 702, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/totemandbrandrange.png"]= { + ["Art/2DArt/SkillIcons/KitavaTribeSkill.png"]= { ["x"]= 728, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/totemattackspeed.png"]= { + ["Art/2DArt/SkillIcons/NgamahuTribeSkill.png"]= { ["x"]= 754, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/totemlife.png"]= { + ["Art/2DArt/SkillIcons/RamakoTribeSkill.png"]= { ["x"]= 780, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/trapcriticalstrike.png"]= { + ["Art/2DArt/SkillIcons/RongokuraiTribeSkill.png"]= { ["x"]= 806, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/trapdamage.png"]= { + ["Art/2DArt/SkillIcons/TasalioTribeSkill.png"]= { ["x"]= 832, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/trapsduration.png"]= { + ["Art/2DArt/SkillIcons/TawhoaTribeSkill.png"]= { ["x"]= 858, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/trapsradius.png"]= { + ["Art/2DArt/SkillIcons/TukohamaTribeSkill.png"]= { ["x"]= 884, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/trapsspeed.png"]= { + ["Art/2DArt/SkillIcons/ValakoTribeSkill.png"]= { ["x"]= 910, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/weaponelementaldamagepercentage.png"]= { + ["Art/2DArt/SkillIcons/passives/HinekoraPassiveIcon1.png"]= { ["x"]= 936, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/ArohonguiTribeSkill.png"]= { - ["x"]= 0, - ["y"]= 312, - ["w"]= 26, - ["h"]= 26 - }, - ["Art/2DArt/SkillIcons/HinekoraTribeSkill.png"]= { - ["x"]= 26, - ["y"]= 312, - ["w"]= 26, - ["h"]= 26 - }, - ["Art/2DArt/SkillIcons/KitavaTribeSkill.png"]= { - ["x"]= 52, - ["y"]= 312, - ["w"]= 26, - ["h"]= 26 - }, - ["Art/2DArt/SkillIcons/NgamahuTribeSkill.png"]= { - ["x"]= 78, - ["y"]= 312, - ["w"]= 26, - ["h"]= 26 - }, - ["Art/2DArt/SkillIcons/RamakoTribeSkill.png"]= { - ["x"]= 104, - ["y"]= 312, - ["w"]= 26, - ["h"]= 26 - }, - ["Art/2DArt/SkillIcons/RongokuraiTribeSkill.png"]= { - ["x"]= 130, - ["y"]= 312, - ["w"]= 26, - ["h"]= 26 - }, - ["Art/2DArt/SkillIcons/TasalioTribeSkill.png"]= { - ["x"]= 156, - ["y"]= 312, - ["w"]= 26, - ["h"]= 26 - }, - ["Art/2DArt/SkillIcons/TawhoaTribeSkill.png"]= { - ["x"]= 182, - ["y"]= 312, - ["w"]= 26, - ["h"]= 26 - }, - ["Art/2DArt/SkillIcons/TukohamaTribeSkill.png"]= { - ["x"]= 208, - ["y"]= 312, - ["w"]= 26, - ["h"]= 26 - }, - ["Art/2DArt/SkillIcons/ValakoTribeSkill.png"]= { - ["x"]= 234, - ["y"]= 312, - ["w"]= 26, - ["h"]= 26 - }, - ["Art/2DArt/SkillIcons/passives/HinekoraPassiveIcon1.png"]= { - ["x"]= 260, - ["y"]= 312, - ["w"]= 26, - ["h"]= 26 - }, ["Art/2DArt/SkillIcons/passives/HinekoraPassiveIcon2.png"]= { - ["x"]= 286, - ["y"]= 312, + ["x"]= 962, + ["y"]= 286, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/HinekoraPassiveIcon3.png"]= { - ["x"]= 312, + ["x"]= 0, ["y"]= 312, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/SkillscostingLifenode.png"]= { - ["x"]= 338, + ["x"]= 26, ["y"]= 312, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/accuracyint.png"]= { - ["x"]= 364, + ["x"]= 52, ["y"]= 312, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/totemandbrandlife.png"]= { - ["x"]= 390, + ["x"]= 78, ["y"]= 312, ["w"]= 26, ["h"]= 26 @@ -9944,8 +10070,8 @@ return { } }, ["notableInactive"]= { - ["filename"]= "https://web.poecdn.com/image/passive-skill/skills-disabled-3.jpg?ac7492dd", - ["w"]= 962, + ["filename"]= "https://web.poecdn.com/image/passive-skill/skills-disabled-3.jpg?94caf4e2", + ["w"]= 999, ["h"]= 1459, ["coords"]= { ["Art/2DArt/SkillIcons/passives/2handeddamage.png"]= { @@ -10105,3871 +10231,3997 @@ return { ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/Assassin/DeadlyInfusion.png"]= { + ["x"]= 962, + ["y"]= 338, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Assassin/Elusive.png"]= { ["x"]= 0, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Assassin/Elusive.png"]= { + ["Art/2DArt/SkillIcons/passives/Assassin/NoxiousStrike.png"]= { ["x"]= 37, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Assassin/NoxiousStrike.png"]= { + ["Art/2DArt/SkillIcons/passives/Assassin/ToxicDelivery.png"]= { ["x"]= 74, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Assassin/ToxicDelivery.png"]= { + ["Art/2DArt/SkillIcons/passives/Assassin/UnstableInfusion.png"]= { ["x"]= 111, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Assassin/UnstableInfusion.png"]= { + ["Art/2DArt/SkillIcons/passives/AssassinAnointNotable.png"]= { ["x"]= 148, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/AssassinAnointNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/AtlasTrees/AulBloodlineNotable.png"]= { ["x"]= 185, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/AtlasTrees/AulBloodlineNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/AtlasTrees/BestiaryNotable4.png"]= { ["x"]= 222, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/AtlasTrees/BestiaryNotable4.png"]= { + ["Art/2DArt/SkillIcons/passives/AtlasTrees/BloodLineOlrothNotable.png"]= { ["x"]= 259, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/AtlasTrees/BloodLineOlrothNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/AtlasTrees/BoldUndertaking.png"]= { ["x"]= 296, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/AtlasTrees/BoldUndertaking.png"]= { + ["Art/2DArt/SkillIcons/passives/AtlasTrees/BreachNotable4.png"]= { ["x"]= 333, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/AtlasTrees/BreachNotable4.png"]= { + ["Art/2DArt/SkillIcons/passives/AtlasTrees/DeliriumNotable1.png"]= { ["x"]= 370, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/AtlasTrees/DeliriumNotable1.png"]= { + ["Art/2DArt/SkillIcons/passives/AtlasTrees/FarrulNotable1.png"]= { ["x"]= 407, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/AtlasTrees/FarrulNotable1.png"]= { + ["Art/2DArt/SkillIcons/passives/AtlasTrees/HarbingerNode1.png"]= { ["x"]= 444, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/AtlasTrees/HarbingerNode1.png"]= { + ["Art/2DArt/SkillIcons/passives/AtlasTrees/LyciaNotable1.png"]= { ["x"]= 481, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/AtlasTrees/LyciaNotable1.png"]= { + ["Art/2DArt/SkillIcons/passives/AtlasTrees/MorePrimalWisps.png"]= { ["x"]= 518, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/AtlasTrees/MorePrimalWisps.png"]= { + ["Art/2DArt/SkillIcons/passives/AtlasTrees/MoreVividWisps.png"]= { ["x"]= 555, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/AtlasTrees/MoreVividWisps.png"]= { + ["Art/2DArt/SkillIcons/passives/AtlasTrees/MoreWildWisps.png"]= { ["x"]= 592, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/AtlasTrees/MoreWildWisps.png"]= { + ["Art/2DArt/SkillIcons/passives/AtlasTrees/TempestNotable1.png"]= { ["x"]= 629, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/AtlasTrees/TempestNotable1.png"]= { + ["Art/2DArt/SkillIcons/passives/AtlasTrees/UltimatumNotable3.png"]= { ["x"]= 666, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/AtlasTrees/UltimatumNotable3.png"]= { + ["Art/2DArt/SkillIcons/passives/AtlasTrees/UltimatumNotable4.png"]= { ["x"]= 703, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/AtlasTrees/UltimatumNotable4.png"]= { + ["Art/2DArt/SkillIcons/passives/AttackBlindNotable.png"]= { ["x"]= 740, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/AttackBlindNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/AttackDamangeAndEvasionNotableIcon.png"]= { ["x"]= 777, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/AttackDamangeAndEvasionNotableIcon.png"]= { + ["Art/2DArt/SkillIcons/passives/AttackPoisonNotable.png"]= { ["x"]= 814, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/AttackPoisonNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/AuraEffectNotable.png"]= { ["x"]= 851, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/AuraEffectNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/AuraReservationNotable.png"]= { ["x"]= 888, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/AuraReservationNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/AvataroftheHunt2.png"]= { ["x"]= 925, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/AvataroftheHunt2.png"]= { + ["Art/2DArt/SkillIcons/passives/AvoidInterruptionFromCastingNotable.png"]= { + ["x"]= 962, + ["y"]= 375, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/AxeNotable1.png"]= { ["x"]= 0, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/AvoidInterruptionFromCastingNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/AxeNotable2.png"]= { ["x"]= 37, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/AxeNotable1.png"]= { + ["Art/2DArt/SkillIcons/passives/AxeandSwordDamage.png"]= { ["x"]= 74, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/AxeNotable2.png"]= { + ["Art/2DArt/SkillIcons/passives/AxesandAttackSpeed.png"]= { ["x"]= 111, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/AxeandSwordDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/BannerAreaNotable.png"]= { ["x"]= 148, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/AxesandAttackSpeed.png"]= { + ["Art/2DArt/SkillIcons/passives/BannerDurationNotable.png"]= { ["x"]= 185, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/BannerAreaNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/BannerEffectNotable.png"]= { ["x"]= 222, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/BannerDurationNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/BannerResourceAreaNotable.png"]= { ["x"]= 259, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/BannerEffectNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/BannersNotable.png"]= { ["x"]= 296, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/BannerResourceAreaNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/BarragingProjectilesNotable.png"]= { ["x"]= 333, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/BannersNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/BattleRouse.png"]= { ["x"]= 370, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/BarragingProjectilesNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Berserker/AspectOfCarnage.png"]= { ["x"]= 407, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/BattleRouse.png"]= { + ["Art/2DArt/SkillIcons/passives/Berserker/Blitz.png"]= { ["x"]= 444, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Berserker/AspectOfCarnage.png"]= { + ["Art/2DArt/SkillIcons/passives/Berserker/CloakedAgony.png"]= { ["x"]= 481, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Berserker/Blitz.png"]= { + ["Art/2DArt/SkillIcons/passives/Berserker/CombatFrenzy.png"]= { ["x"]= 518, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Berserker/CloakedAgony.png"]= { + ["Art/2DArt/SkillIcons/passives/Berserker/DefyPain.png"]= { ["x"]= 555, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Berserker/CombatFrenzy.png"]= { + ["Art/2DArt/SkillIcons/passives/Berserker/RiteOfRuin.png"]= { ["x"]= 592, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Berserker/DefyPain.png"]= { + ["Art/2DArt/SkillIcons/passives/Berserker/WarBringer.png"]= { ["x"]= 629, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Berserker/RiteOfRuin.png"]= { + ["Art/2DArt/SkillIcons/passives/BeserkerAnointNotable.png"]= { ["x"]= 666, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Berserker/WarBringer.png"]= { + ["Art/2DArt/SkillIcons/passives/BladeBarrierNotable.png"]= { ["x"]= 703, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/BeserkerAnointNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/BleedPoison.png"]= { ["x"]= 740, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/BladeBarrierNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/BleedPoisonMitigateNotable.png"]= { ["x"]= 777, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/BleedPoison.png"]= { + ["Art/2DArt/SkillIcons/passives/BleedingNotable1.png"]= { ["x"]= 814, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/BleedPoisonMitigateNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/BleedingNotable2.png"]= { ["x"]= 851, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/BleedingNotable1.png"]= { + ["Art/2DArt/SkillIcons/passives/BlockAttackDmgNotable.png"]= { ["x"]= 888, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/BleedingNotable2.png"]= { + ["Art/2DArt/SkillIcons/passives/BlockSpellDmgNotable.png"]= { ["x"]= 925, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/BlockAttackDmgNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Blood2.png"]= { + ["x"]= 962, + ["y"]= 412, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/BloodPact.png"]= { ["x"]= 0, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/BlockSpellDmgNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/BloodSiphon.png"]= { ["x"]= 37, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Blood2.png"]= { + ["Art/2DArt/SkillIcons/passives/BloodyBludgeon.png"]= { ["x"]= 74, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/BloodPact.png"]= { + ["Art/2DArt/SkillIcons/passives/Boomerang.png"]= { ["x"]= 111, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/BloodSiphon.png"]= { + ["Art/2DArt/SkillIcons/passives/BowDamage.png"]= { ["x"]= 148, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/BloodyBludgeon.png"]= { + ["Art/2DArt/SkillIcons/passives/Brand2.png"]= { ["x"]= 185, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Boomerang.png"]= { + ["Art/2DArt/SkillIcons/passives/Brand4.png"]= { ["x"]= 222, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/BowDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/BrandDmgNotable.png"]= { ["x"]= 259, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Brand2.png"]= { + ["Art/2DArt/SkillIcons/passives/BreathofFlames2.png"]= { ["x"]= 296, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Brand4.png"]= { + ["Art/2DArt/SkillIcons/passives/BreathofLightening2.png"]= { ["x"]= 333, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/BrandDmgNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/BreathofRime2.png"]= { ["x"]= 370, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/BreathofFlames2.png"]= { + ["Art/2DArt/SkillIcons/passives/ByTheBlade.png"]= { ["x"]= 407, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/BreathofLightening2.png"]= { + ["Art/2DArt/SkillIcons/passives/CelestialPunishment.png"]= { ["x"]= 444, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/BreathofRime2.png"]= { + ["Art/2DArt/SkillIcons/passives/ChainingProjectiles.png"]= { ["x"]= 481, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ByTheBlade.png"]= { + ["Art/2DArt/SkillIcons/passives/Champion.png"]= { ["x"]= 518, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/CelestialPunishment.png"]= { + ["Art/2DArt/SkillIcons/passives/Champion/FirstStrikeLastFall.png"]= { ["x"]= 555, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ChainingProjectiles.png"]= { + ["Art/2DArt/SkillIcons/passives/Champion/Fortitude.png"]= { ["x"]= 592, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Champion.png"]= { + ["Art/2DArt/SkillIcons/passives/Champion/ImpalePassiveNotable.png"]= { ["x"]= 629, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Champion/FirstStrikeLastFall.png"]= { + ["Art/2DArt/SkillIcons/passives/Champion/Inpirational.png"]= { ["x"]= 666, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Champion/Fortitude.png"]= { + ["Art/2DArt/SkillIcons/passives/Champion/Unstopable.png"]= { ["x"]= 703, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Champion/ImpalePassiveNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Champion/WorthyCauses.png"]= { ["x"]= 740, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Champion/Inpirational.png"]= { + ["Art/2DArt/SkillIcons/passives/Champion/WorthyFoe.png"]= { ["x"]= 777, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Champion/Unstopable.png"]= { + ["Art/2DArt/SkillIcons/passives/ChampionAnointNotable.png"]= { ["x"]= 814, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Champion/WorthyCauses.png"]= { + ["Art/2DArt/SkillIcons/passives/ChaosDamage2.png"]= { ["x"]= 851, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Champion/WorthyFoe.png"]= { + ["Art/2DArt/SkillIcons/passives/ChaosDamageOverTimeNotable.png"]= { ["x"]= 888, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ChampionAnointNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/ChaosDamageOverTimeNotable2.png"]= { ["x"]= 925, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ChaosDamage2.png"]= { + ["Art/2DArt/SkillIcons/passives/ChaosResistNotable.png"]= { + ["x"]= 962, + ["y"]= 449, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ChaoticPotential.png"]= { ["x"]= 0, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ChaosDamageOverTimeNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/CheiftainAnointNotable.png"]= { ["x"]= 37, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ChaosDamageOverTimeNotable2.png"]= { + ["Art/2DArt/SkillIcons/passives/Chieftain/ArohunguiMoonsPresenceWarcry.png"]= { ["x"]= 74, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ChaosResistNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Chieftain/HinekoraDeathsFury.png"]= { ["x"]= 111, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ChaoticPotential.png"]= { + ["Art/2DArt/SkillIcons/passives/Chieftain/NgamahuFlamesAdvance.png"]= { ["x"]= 148, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/CheiftainAnointNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Chieftain/RamakoSunsLight.png"]= { ["x"]= 185, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Chieftain/ArohunguiMoonsPresenceWarcry.png"]= { + ["Art/2DArt/SkillIcons/passives/Chieftain/TasalioCleansingWater.png"]= { ["x"]= 222, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Chieftain/HinekoraDeathsFury.png"]= { + ["Art/2DArt/SkillIcons/passives/Chieftain/TukomahaWarsHerald.png"]= { ["x"]= 259, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Chieftain/NgamahuFlamesAdvance.png"]= { + ["Art/2DArt/SkillIcons/passives/Chieftain/ValakoStormsEmbrace.png"]= { ["x"]= 296, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Chieftain/RamakoSunsLight.png"]= { + ["Art/2DArt/SkillIcons/passives/ChillThemedNotable.png"]= { ["x"]= 333, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Chieftain/TasalioCleansingWater.png"]= { + ["Art/2DArt/SkillIcons/passives/ClawNotable1.png"]= { ["x"]= 370, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Chieftain/TukomahaWarsHerald.png"]= { + ["Art/2DArt/SkillIcons/passives/ClawNotable2.png"]= { ["x"]= 407, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Chieftain/ValakoStormsEmbrace.png"]= { + ["Art/2DArt/SkillIcons/passives/ClawsOfTheMagpie.png"]= { ["x"]= 444, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ChillThemedNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/CleverThief.png"]= { ["x"]= 481, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ClawNotable1.png"]= { + ["Art/2DArt/SkillIcons/passives/ColdAndFireHybridNotable.png"]= { ["x"]= 518, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ClawNotable2.png"]= { + ["Art/2DArt/SkillIcons/passives/ColdDamageEnemyNotable.png"]= { ["x"]= 555, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ClawsOfTheMagpie.png"]= { + ["Art/2DArt/SkillIcons/passives/ColdDamageOverTimeNotable.png"]= { ["x"]= 592, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/CleverThief.png"]= { + ["Art/2DArt/SkillIcons/passives/ColdResistNotable.png"]= { ["x"]= 629, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ColdAndFireHybridNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/ColdWeaponDmg.png"]= { ["x"]= 666, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ColdDamageEnemyNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/ColdheartedCalculation2.png"]= { ["x"]= 703, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ColdDamageOverTimeNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/CombatFocusNotable.png"]= { ["x"]= 740, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ColdResistNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/CombatStamina.png"]= { ["x"]= 777, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ColdWeaponDmg.png"]= { + ["Art/2DArt/SkillIcons/passives/CommandofSteel.png"]= { ["x"]= 814, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ColdheartedCalculation2.png"]= { + ["Art/2DArt/SkillIcons/passives/Constitution.png"]= { ["x"]= 851, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/CombatFocusNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Coordination.png"]= { ["x"]= 888, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/CombatStamina.png"]= { + ["Art/2DArt/SkillIcons/passives/CorpsesNotable.png"]= { ["x"]= 925, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/CommandofSteel.png"]= { + ["Art/2DArt/SkillIcons/passives/Corruption.png"]= { + ["x"]= 962, + ["y"]= 486, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/CritStrikeBleedingNotable.png"]= { ["x"]= 0, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Constitution.png"]= { + ["Art/2DArt/SkillIcons/passives/CurseAreaOfEffectNotable.png"]= { ["x"]= 37, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Coordination.png"]= { + ["Art/2DArt/SkillIcons/passives/CurseEffectNotable.png"]= { ["x"]= 74, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/CorpsesNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/CurseNotable.png"]= { ["x"]= 111, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Corruption.png"]= { + ["Art/2DArt/SkillIcons/passives/CurseNotable2.png"]= { ["x"]= 148, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/CritStrikeBleedingNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/CursemitigationclusterNotable.png"]= { ["x"]= 185, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/CurseAreaOfEffectNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/DaggerNotable1.png"]= { ["x"]= 222, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/CurseEffectNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/DaggerandClawDamage.png"]= { ["x"]= 259, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/CurseNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/DamageOverTimeNotable.png"]= { ["x"]= 296, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/CurseNotable2.png"]= { + ["Art/2DArt/SkillIcons/passives/DamageofMinionsNotable.png"]= { ["x"]= 333, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/CursemitigationclusterNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/DarkestHour.png"]= { ["x"]= 370, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DaggerNotable1.png"]= { + ["Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeFrenzyChargeNotable.png"]= { ["x"]= 407, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DaggerandClawDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/DeadEye/FarShot.png"]= { ["x"]= 444, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DamageOverTimeNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/DeadEye/GatherWinds.png"]= { ["x"]= 481, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DamageofMinionsNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/DeadEye/Ricochet.png"]= { ["x"]= 518, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DarkestHour.png"]= { + ["Art/2DArt/SkillIcons/passives/DeadeyeAnointNotable.png"]= { ["x"]= 555, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeFrenzyChargeNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/DeepBreathsNotable.png"]= { ["x"]= 592, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DeadEye/FarShot.png"]= { + ["Art/2DArt/SkillIcons/passives/DiamondSkin2.png"]= { ["x"]= 629, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DeadEye/GatherWinds.png"]= { + ["Art/2DArt/SkillIcons/passives/DireTorment.png"]= { ["x"]= 666, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DeadEye/Ricochet.png"]= { + ["Art/2DArt/SkillIcons/passives/DivineFury.png"]= { ["x"]= 703, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DeadeyeAnointNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/DivineWrath.png"]= { ["x"]= 740, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DeepBreathsNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/DmgHeraldSkillsNotable.png"]= { ["x"]= 777, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DiamondSkin2.png"]= { + ["Art/2DArt/SkillIcons/passives/DmgWhenChannelSkillsNotable.png"]= { ["x"]= 814, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DireTorment.png"]= { + ["Art/2DArt/SkillIcons/passives/DodgeAtksNotable.png"]= { ["x"]= 851, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DivineFury.png"]= { + ["Art/2DArt/SkillIcons/passives/Dreamer.png"]= { ["x"]= 888, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DivineWrath.png"]= { + ["Art/2DArt/SkillIcons/passives/DruidicRite.png"]= { ["x"]= 925, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DmgHeraldSkillsNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/DualWieldNotable.png"]= { + ["x"]= 962, + ["y"]= 523, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/DualWieldingBlockNotable.png"]= { ["x"]= 0, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DmgWhenChannelSkillsNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/DualWieldingDamage.png"]= { ["x"]= 37, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DodgeAtksNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/DurationofMinionsNotable.png"]= { ["x"]= 74, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Dreamer.png"]= { + ["Art/2DArt/SkillIcons/passives/ElementalAilmentResistance.png"]= { ["x"]= 111, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DruidicRite.png"]= { + ["Art/2DArt/SkillIcons/passives/ElementalDamagewithAttacks2.png"]= { ["x"]= 148, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DualWieldNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/ElementalDominion2.png"]= { ["x"]= 185, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DualWieldingBlockNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/ElementalFocus.png"]= { ["x"]= 222, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DualWieldingDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/Elementalist/ChillSpecialisation.png"]= { ["x"]= 259, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DurationofMinionsNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Elementalist/ElemancerIcon.png"]= { ["x"]= 296, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ElementalAilmentResistance.png"]= { + ["Art/2DArt/SkillIcons/passives/Elementalist/IgniteSpecialisation.png"]= { ["x"]= 333, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ElementalDamagewithAttacks2.png"]= { + ["Art/2DArt/SkillIcons/passives/Elementalist/IridescentFlesh.png"]= { ["x"]= 370, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ElementalDominion2.png"]= { + ["Art/2DArt/SkillIcons/passives/Elementalist/LiegeOfThePrimordial.png"]= { ["x"]= 407, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ElementalFocus.png"]= { + ["Art/2DArt/SkillIcons/passives/Elementalist/PendulumOfDestruction.png"]= { ["x"]= 444, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Elementalist/ChillSpecialisation.png"]= { + ["Art/2DArt/SkillIcons/passives/Elementalist/PrimevalForce.png"]= { ["x"]= 481, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Elementalist/ElemancerIcon.png"]= { + ["Art/2DArt/SkillIcons/passives/Elementalist/ShockSpecialisation.png"]= { ["x"]= 518, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Elementalist/IgniteSpecialisation.png"]= { + ["Art/2DArt/SkillIcons/passives/ElementalistAnointNotable.png"]= { ["x"]= 555, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Elementalist/IridescentFlesh.png"]= { + ["Art/2DArt/SkillIcons/passives/EnduranceChargeNotable.png"]= { ["x"]= 592, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Elementalist/LiegeOfThePrimordial.png"]= { + ["Art/2DArt/SkillIcons/passives/EnergyShieldNotable.png"]= { ["x"]= 629, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Elementalist/PendulumOfDestruction.png"]= { + ["Art/2DArt/SkillIcons/passives/Entropy.png"]= { ["x"]= 666, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Elementalist/PrimevalForce.png"]= { + ["Art/2DArt/SkillIcons/passives/EscalationNotable.png"]= { ["x"]= 703, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Elementalist/ShockSpecialisation.png"]= { + ["Art/2DArt/SkillIcons/passives/EssenceSurge.png"]= { ["x"]= 740, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ElementalistAnointNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/EvasionAndBlindNotable.png"]= { ["x"]= 777, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/EnduranceChargeNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/EvasionAndPhasingNotable.png"]= { ["x"]= 814, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/EnergyShieldNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/EvasionNotable.png"]= { ["x"]= 851, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Entropy.png"]= { + ["Art/2DArt/SkillIcons/passives/ExceptionalPerformance.png"]= { ["x"]= 888, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/EscalationNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/ExplosiveRunes.png"]= { ["x"]= 925, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/EssenceSurge.png"]= { + ["Art/2DArt/SkillIcons/passives/EyesOfTheDeadly.png"]= { + ["x"]= 962, + ["y"]= 560, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/EyesOfThePowerful.png"]= { ["x"]= 0, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/EvasionAndBlindNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/EyesOfTheSavant.png"]= { ["x"]= 37, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/EvasionAndPhasingNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/FasterBleeding2.png"]= { ["x"]= 74, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/EvasionNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/FatalBlade.png"]= { ["x"]= 111, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ExceptionalPerformance.png"]= { + ["Art/2DArt/SkillIcons/passives/FireAilment.png"]= { ["x"]= 148, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ExplosiveRunes.png"]= { + ["Art/2DArt/SkillIcons/passives/FireDamageOverTimeNotable.png"]= { ["x"]= 185, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/EyesOfTheDeadly.png"]= { + ["Art/2DArt/SkillIcons/passives/FireResistNotable.png"]= { ["x"]= 222, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/EyesOfThePowerful.png"]= { + ["Art/2DArt/SkillIcons/passives/FlaskDuration.png"]= { ["x"]= 259, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/EyesOfTheSavant.png"]= { + ["Art/2DArt/SkillIcons/passives/FlaskNotableCritStrikeRecharge.png"]= { ["x"]= 296, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/FasterBleeding2.png"]= { + ["Art/2DArt/SkillIcons/passives/FlaskNotableFlasksLastLonger.png"]= { ["x"]= 333, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/FatalBlade.png"]= { + ["Art/2DArt/SkillIcons/passives/ForceOfNature.png"]= { ["x"]= 370, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/FireAilment.png"]= { + ["Art/2DArt/SkillIcons/passives/ForkingProjectilesNotable.png"]= { ["x"]= 407, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/FireDamageOverTimeNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/FortifyNotable1.png"]= { ["x"]= 444, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/FireResistNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/FortifyNotable2.png"]= { ["x"]= 481, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/FlaskDuration.png"]= { + ["Art/2DArt/SkillIcons/passives/FrenzyChargeNotable.png"]= { ["x"]= 518, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/FlaskNotableCritStrikeRecharge.png"]= { + ["Art/2DArt/SkillIcons/passives/GenericBlockNotable1.png"]= { ["x"]= 555, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/FlaskNotableFlasksLastLonger.png"]= { + ["Art/2DArt/SkillIcons/passives/GenericBlockNotable2.png"]= { ["x"]= 592, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ForceOfNature.png"]= { + ["Art/2DArt/SkillIcons/passives/GenericSpellBlockNotable.png"]= { ["x"]= 629, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ForkingProjectilesNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Gladiator/GLADBloodAndSand.png"]= { ["x"]= 666, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/FortifyNotable1.png"]= { + ["Art/2DArt/SkillIcons/passives/Gladiator/GLADBloodInEyes.png"]= { ["x"]= 703, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/FortifyNotable2.png"]= { + ["Art/2DArt/SkillIcons/passives/Gladiator/GLADPainForged.png"]= { ["x"]= 740, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/FrenzyChargeNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Gladiator/GLADVersitileCombatant.png"]= { ["x"]= 777, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/GenericBlockNotable1.png"]= { + ["Art/2DArt/SkillIcons/passives/Gladiator/GLADViolence.png"]= { ["x"]= 814, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/GenericBlockNotable2.png"]= { + ["Art/2DArt/SkillIcons/passives/Gladiator/GLADViolentRetaliation.png"]= { ["x"]= 851, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/GenericSpellBlockNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Gladiator/GladiatorDualWiledSwordAxeNotable.png"]= { ["x"]= 888, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Gladiator/GLADBloodAndSand.png"]= { + ["Art/2DArt/SkillIcons/passives/GladiatorAnointNotable.png"]= { ["x"]= 925, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Gladiator/GLADBloodInEyes.png"]= { + ["Art/2DArt/SkillIcons/passives/GolemsNotable.png"]= { + ["x"]= 962, + ["y"]= 597, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/GreenProjectileAttackNotable.png"]= { ["x"]= 0, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Gladiator/GLADPainForged.png"]= { + ["Art/2DArt/SkillIcons/passives/GrowthandDecay.png"]= { ["x"]= 37, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Gladiator/GLADVersitileCombatant.png"]= { + ["Art/2DArt/SkillIcons/passives/Guardian/GuardianHallowingFlameNotable.png"]= { ["x"]= 74, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Gladiator/GLADViolence.png"]= { + ["Art/2DArt/SkillIcons/passives/Guardian/HarmonyOfPurpose.png"]= { ["x"]= 111, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Gladiator/GLADViolentRetaliation.png"]= { + ["Art/2DArt/SkillIcons/passives/Guardian/Radient Crusade.png"]= { ["x"]= 148, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Gladiator/GladiatorDualWiledSwordAxeNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Guardian/RadientFaith.png"]= { ["x"]= 185, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/GladiatorAnointNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Guardian/ShieldMastery.png"]= { ["x"]= 222, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/GolemsNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Guardian/TimeOfNeed.png"]= { ["x"]= 259, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/GreenProjectileAttackNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Guardian/Unwavering Crusade.png"]= { ["x"]= 296, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/GrowthandDecay.png"]= { + ["Art/2DArt/SkillIcons/passives/Guardian/UnwaveringFaith.png"]= { ["x"]= 333, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Guardian/GuardianHallowingFlameNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/GuardianAnointNotable.png"]= { ["x"]= 370, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Guardian/HarmonyOfPurpose.png"]= { + ["Art/2DArt/SkillIcons/passives/Harrier.png"]= { ["x"]= 407, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Guardian/Radient Crusade.png"]= { + ["Art/2DArt/SkillIcons/passives/HeartandSoul.png"]= { ["x"]= 444, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Guardian/RadientFaith.png"]= { + ["Art/2DArt/SkillIcons/passives/HeartofChaos.png"]= { ["x"]= 481, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Guardian/ShieldMastery.png"]= { + ["Art/2DArt/SkillIcons/passives/HeartoftheOak.png"]= { ["x"]= 518, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Guardian/TimeOfNeed.png"]= { + ["Art/2DArt/SkillIcons/passives/Hearty.png"]= { ["x"]= 555, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Guardian/Unwavering Crusade.png"]= { + ["Art/2DArt/SkillIcons/passives/HeirophantAnointNotable.png"]= { ["x"]= 592, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Guardian/UnwaveringFaith.png"]= { + ["Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.png"]= { ["x"]= 629, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/GuardianAnointNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/HeraldDamageNotable.png"]= { ["x"]= 666, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Harrier.png"]= { + ["Art/2DArt/SkillIcons/passives/HeraldReservation.png"]= { ["x"]= 703, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/HeartandSoul.png"]= { + ["Art/2DArt/SkillIcons/passives/Hierophant/AncestralZeal.png"]= { ["x"]= 740, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/HeartofChaos.png"]= { + ["Art/2DArt/SkillIcons/passives/Hierophant/ArcaneSurge.png"]= { ["x"]= 777, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/HeartoftheOak.png"]= { + ["Art/2DArt/SkillIcons/passives/Hierophant/DiscipleOfRuin.png"]= { ["x"]= 814, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Hearty.png"]= { + ["Art/2DArt/SkillIcons/passives/Hierophant/ItemAugment.png"]= { ["x"]= 851, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/HeirophantAnointNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Hierophant/MindOverBeing.png"]= { ["x"]= 888, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.png"]= { + ["Art/2DArt/SkillIcons/passives/Hierophant/MindOverBody.png"]= { ["x"]= 925, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/HeraldDamageNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Hierophant/SignOfPurpose.png"]= { + ["x"]= 962, + ["y"]= 634, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Hierophant/SpiritualEmpowerment.png"]= { ["x"]= 0, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/HeraldReservation.png"]= { + ["Art/2DArt/SkillIcons/passives/HiredKiller2.png"]= { ["x"]= 37, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Hierophant/AncestralZeal.png"]= { + ["Art/2DArt/SkillIcons/passives/HoldingShieldDamage.png"]= { ["x"]= 74, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Hierophant/ArcaneSurge.png"]= { + ["Art/2DArt/SkillIcons/passives/Hunter.png"]= { ["x"]= 111, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Hierophant/DiscipleOfRuin.png"]= { + ["Art/2DArt/SkillIcons/passives/IgniteAshNotable.png"]= { ["x"]= 148, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Hierophant/ItemAugment.png"]= { + ["Art/2DArt/SkillIcons/passives/IgniteAttackNotable.png"]= { ["x"]= 185, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Hierophant/MindOverBeing.png"]= { + ["Art/2DArt/SkillIcons/passives/IgniteBleedNotable.png"]= { ["x"]= 222, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Hierophant/MindOverBody.png"]= { + ["Art/2DArt/SkillIcons/passives/IgniteStunNotable.png"]= { ["x"]= 259, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Hierophant/SignOfPurpose.png"]= { + ["Art/2DArt/SkillIcons/passives/IgnorePain.png"]= { ["x"]= 296, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Hierophant/SpiritualEmpowerment.png"]= { + ["Art/2DArt/SkillIcons/passives/Impale1HandNotable.png"]= { ["x"]= 333, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/HiredKiller2.png"]= { + ["Art/2DArt/SkillIcons/passives/ImpaleEffectNotable.png"]= { ["x"]= 370, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/HoldingShieldDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/ImpaleNotable1.png"]= { ["x"]= 407, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Hunter.png"]= { + ["Art/2DArt/SkillIcons/passives/ImpaleNotable2.png"]= { ["x"]= 444, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/IgniteAshNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreaseCritChanceNotable.png"]= { ["x"]= 481, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/IgniteAttackNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreaseMinionLifeNotable.png"]= { ["x"]= 518, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/IgniteBleedNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreasedAttackDamageNotable.png"]= { ["x"]= 555, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/IgniteStunNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreasedChaosDamage.png"]= { ["x"]= 592, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/IgnorePain.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreasedColdDamage.png"]= { ["x"]= 629, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Impale1HandNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreasedElementalDamage.png"]= { ["x"]= 666, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ImpaleEffectNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreasedFireDamage.png"]= { ["x"]= 703, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ImpaleNotable1.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreasedLightningDamage.png"]= { ["x"]= 740, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ImpaleNotable2.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreasedManaCostNotable.png"]= { ["x"]= 777, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/IncreaseCritChanceNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreasedMaximumLifeNotable.png"]= { ["x"]= 814, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/IncreaseMinionLifeNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreasedMinionDamageNotable.png"]= { ["x"]= 851, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/IncreasedAttackDamageNotable.png"]= { - ["x"]= 888, + ["Art/2DArt/SkillIcons/passives/IncreasedNonDamageAilmentNotable.png"]= { + ["x"]= 888, + ["y"]= 671, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.png"]= { + ["x"]= 925, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/IncreasedChaosDamage.png"]= { - ["x"]= 925, + ["Art/2DArt/SkillIcons/passives/IncreasedSpellDamageNode.png"]= { + ["x"]= 962, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/IncreasedColdDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreasedSpellDamageNotable.png"]= { ["x"]= 0, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/IncreasedElementalDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreasedWarcryNotable.png"]= { ["x"]= 37, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/IncreasedFireDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/InfusedFlesh.png"]= { ["x"]= 74, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/IncreasedLightningDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/InquisitorAnointNotable.png"]= { ["x"]= 111, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/IncreasedManaCostNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Inquistitor/ElementalDomination.png"]= { ["x"]= 148, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/IncreasedMaximumLifeNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Inquistitor/ElementalForce.png"]= { ["x"]= 185, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/IncreasedMinionDamageNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Inquistitor/ElementalMastery.png"]= { ["x"]= 222, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/IncreasedNonDamageAilmentNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Inquistitor/GloryOfTheSavant.png"]= { ["x"]= 259, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/Inquistitor/InstrumentsOfVirtue.png"]= { ["x"]= 296, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/IncreasedSpellDamageNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Inquistitor/InstrumentsofZeal.png"]= { ["x"]= 333, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/IncreasedSpellDamageNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Inquistitor/Sanctify.png"]= { ["x"]= 370, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/IncreasedWarcryNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Inspiration.png"]= { ["x"]= 407, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/InfusedFlesh.png"]= { + ["Art/2DArt/SkillIcons/passives/IntensifyNotable.png"]= { ["x"]= 444, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/InquisitorAnointNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Juggernaut/JuggernautArmourNotable.png"]= { ["x"]= 481, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Inquistitor/ElementalDomination.png"]= { + ["Art/2DArt/SkillIcons/passives/Juggernaut/Unbreakable.png"]= { ["x"]= 518, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Inquistitor/ElementalForce.png"]= { + ["Art/2DArt/SkillIcons/passives/Juggernaut/Undeniable.png"]= { ["x"]= 555, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Inquistitor/ElementalMastery.png"]= { + ["Art/2DArt/SkillIcons/passives/Juggernaut/Unflinching.png"]= { ["x"]= 592, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Inquistitor/GloryOfTheSavant.png"]= { + ["Art/2DArt/SkillIcons/passives/Juggernaut/Unrelenting.png"]= { ["x"]= 629, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Inquistitor/InstrumentsOfVirtue.png"]= { + ["Art/2DArt/SkillIcons/passives/Juggernaut/Unstoppable.png"]= { ["x"]= 666, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Inquistitor/InstrumentsofZeal.png"]= { + ["Art/2DArt/SkillIcons/passives/Juggernaut/Unyielding.png"]= { ["x"]= 703, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Inquistitor/Sanctify.png"]= { + ["Art/2DArt/SkillIcons/passives/JuggernautAnointNotable.png"]= { ["x"]= 740, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Inspiration.png"]= { + ["Art/2DArt/SkillIcons/passives/KeystoneArmourMaster.png"]= { ["x"]= 777, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/IntensifyNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/KeystoneWhispersOfDoom.png"]= { ["x"]= 814, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Juggernaut/JuggernautArmourNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/LifeArmourAndEvasion.png"]= { ["x"]= 851, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Juggernaut/Unbreakable.png"]= { + ["Art/2DArt/SkillIcons/passives/LifeFlasks.png"]= { ["x"]= 888, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Juggernaut/Undeniable.png"]= { + ["Art/2DArt/SkillIcons/passives/LifeGainOnHitNotable.png"]= { ["x"]= 925, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Juggernaut/Unflinching.png"]= { + ["Art/2DArt/SkillIcons/passives/LifeManaFlasksrecovery.png"]= { + ["x"]= 962, + ["y"]= 708, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/LifeRecoupNotable.png"]= { ["x"]= 0, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Juggernaut/Unrelenting.png"]= { + ["Art/2DArt/SkillIcons/passives/LifeRegenerationGainRegenNotable.png"]= { ["x"]= 37, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Juggernaut/Unstoppable.png"]= { + ["Art/2DArt/SkillIcons/passives/LifeRegenerationLowlifeBonusNotable.png"]= { ["x"]= 74, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Juggernaut/Unyielding.png"]= { + ["Art/2DArt/SkillIcons/passives/LifeandCursesN.png"]= { ["x"]= 111, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/JuggernautAnointNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/LifeandManaFlasks.png"]= { ["x"]= 148, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/KeystoneWhispersOfDoom.png"]= { + ["Art/2DArt/SkillIcons/passives/LifeandResistancesofMinions.png"]= { ["x"]= 185, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/LifeArmourAndEvasion.png"]= { + ["Art/2DArt/SkillIcons/passives/LightOfDivinity.png"]= { ["x"]= 222, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/LifeFlasks.png"]= { + ["Art/2DArt/SkillIcons/passives/LightningResistNotable.png"]= { ["x"]= 259, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/LifeGainOnHitNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/LinkNotable3.png"]= { ["x"]= 296, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/LifeManaFlasksrecovery.png"]= { + ["Art/2DArt/SkillIcons/passives/LinkNotable4.png"]= { ["x"]= 333, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/LifeRecoupNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/LustforCarnage.png"]= { ["x"]= 370, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/LifeRegenerationGainRegenNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/MaceNotable1.png"]= { ["x"]= 407, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/LifeRegenerationLowlifeBonusNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/MaceNotable2.png"]= { ["x"]= 444, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/LifeandCursesN.png"]= { + ["Art/2DArt/SkillIcons/passives/MaceandStaffDamage.png"]= { ["x"]= 481, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/LifeandManaFlasks.png"]= { + ["Art/2DArt/SkillIcons/passives/ManaDamageKeystone.png"]= { ["x"]= 518, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/LifeandResistancesofMinions.png"]= { + ["Art/2DArt/SkillIcons/passives/ManaFlasksOften.png"]= { ["x"]= 555, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/LightOfDivinity.png"]= { + ["Art/2DArt/SkillIcons/passives/ManaGuardNotable.png"]= { ["x"]= 592, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/LightningResistNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/ManaNotable.png"]= { ["x"]= 629, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/LinkNotable3.png"]= { + ["Art/2DArt/SkillIcons/passives/ManaandArcaneSurge.png"]= { ["x"]= 666, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/LinkNotable4.png"]= { + ["Art/2DArt/SkillIcons/passives/ManaandSpellBlock.png"]= { ["x"]= 703, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/LustforCarnage.png"]= { + ["Art/2DArt/SkillIcons/passives/ManaandSpellDamage.png"]= { ["x"]= 740, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MaceNotable1.png"]= { + ["Art/2DArt/SkillIcons/passives/Mark.png"]= { ["x"]= 777, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MaceNotable2.png"]= { + ["Art/2DArt/SkillIcons/passives/MarkNotable1.png"]= { ["x"]= 814, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MaceandStaffDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/MarkNotable2.png"]= { ["x"]= 851, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ManaDamageKeystone.png"]= { + ["Art/2DArt/SkillIcons/passives/MarkNotableIncreasedEffect.png"]= { ["x"]= 888, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ManaFlasksOften.png"]= { + ["Art/2DArt/SkillIcons/passives/MarkNotableMarkSpellRecently.png"]= { ["x"]= 925, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ManaGuardNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/MartialExperience.png"]= { + ["x"]= 962, + ["y"]= 745, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/MasterofForce.png"]= { ["x"]= 0, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ManaNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/MaxElementalResistNotable.png"]= { ["x"]= 37, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ManaandArcaneSurge.png"]= { + ["Art/2DArt/SkillIcons/passives/MaxManaNotable.png"]= { ["x"]= 74, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ManaandSpellBlock.png"]= { + ["Art/2DArt/SkillIcons/passives/MaximumElementalResistances2.png"]= { ["x"]= 111, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ManaandSpellDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/MeasuredFuryNotable.png"]= { ["x"]= 148, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Mark.png"]= { + ["Art/2DArt/SkillIcons/passives/MeleeAoENode.png"]= { ["x"]= 185, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MarkNotable1.png"]= { + ["Art/2DArt/SkillIcons/passives/MeleeAoENotable.png"]= { ["x"]= 222, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MarkNotable2.png"]= { + ["Art/2DArt/SkillIcons/passives/MeleeCriticalStrikesNotable.png"]= { ["x"]= 259, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MarkNotableIncreasedEffect.png"]= { + ["Art/2DArt/SkillIcons/passives/MeleeFireNotable.png"]= { ["x"]= 296, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MarkNotableMarkSpellRecently.png"]= { + ["Art/2DArt/SkillIcons/passives/MeleeRange2.png"]= { ["x"]= 333, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MartialExperience.png"]= { + ["Art/2DArt/SkillIcons/passives/MeleeUtility.png"]= { ["x"]= 370, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MasterofForce.png"]= { + ["Art/2DArt/SkillIcons/passives/Meleerange.png"]= { ["x"]= 407, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MaxElementalResistNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/MentalRapidity.png"]= { ["x"]= 444, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MaxManaNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/MindPact.png"]= { ["x"]= 481, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MaximumElementalResistances2.png"]= { + ["Art/2DArt/SkillIcons/passives/MineAreaOfEffectNotable.png"]= { ["x"]= 518, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MeasuredFuryNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/MineCriticalStrikesNotable.png"]= { ["x"]= 555, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MeleeAoENode.png"]= { + ["Art/2DArt/SkillIcons/passives/MineManaReservationNotable.png"]= { ["x"]= 592, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MeleeAoENotable.png"]= { + ["Art/2DArt/SkillIcons/passives/MineTrap.png"]= { ["x"]= 629, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MeleeCriticalStrikesNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/MinionDmgHeraldSkillsNotable.png"]= { ["x"]= 666, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MeleeFireNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Mirage.png"]= { ["x"]= 703, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MeleeRange2.png"]= { + ["Art/2DArt/SkillIcons/passives/NaturalAuthorityNotable.png"]= { ["x"]= 740, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MeleeUtility.png"]= { + ["Art/2DArt/SkillIcons/passives/Necromancer/CommandingTheDarkness.png"]= { ["x"]= 777, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Meleerange.png"]= { + ["Art/2DArt/SkillIcons/passives/Necromancer/CorpseConsumptionNotable2.png"]= { ["x"]= 814, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MentalRapidity.png"]= { + ["Art/2DArt/SkillIcons/passives/Necromancer/DefensiveMinionNotable.png"]= { ["x"]= 851, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MindPact.png"]= { + ["Art/2DArt/SkillIcons/passives/Necromancer/EssenceGlutton.png"]= { ["x"]= 888, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MineAreaOfEffectNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Necromancer/GenericMinionNotable.png"]= { ["x"]= 925, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MineCriticalStrikesNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Necromancer/GiftsOfTheDamned.png"]= { + ["x"]= 962, + ["y"]= 782, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Necromancer/OffensiveMinionNotable.png"]= { ["x"]= 0, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MineManaReservationNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Necromancer/PlagueBringer.png"]= { ["x"]= 37, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MineTrap.png"]= { + ["Art/2DArt/SkillIcons/passives/NecromancerAnointNotable.png"]= { ["x"]= 74, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MinionDmgHeraldSkillsNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Occultist/FatefulEchoes.png"]= { ["x"]= 111, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Mirage.png"]= { + ["Art/2DArt/SkillIcons/passives/Occultist/FrigidWake.png"]= { ["x"]= 148, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/NaturalAuthorityNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Occultist/LotusExtract.png"]= { ["x"]= 185, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Necromancer/CommandingTheDarkness.png"]= { + ["Art/2DArt/SkillIcons/passives/Occultist/SoulCatalyst.png"]= { ["x"]= 222, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Necromancer/CorpseConsumptionNotable2.png"]= { + ["Art/2DArt/SkillIcons/passives/Occultist/VoidBeacon.png"]= { ["x"]= 259, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Necromancer/DefensiveMinionNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Occultist/VowOfDamnation.png"]= { ["x"]= 296, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Necromancer/EssenceGlutton.png"]= { + ["Art/2DArt/SkillIcons/passives/Occultist/WitheringPresence.png"]= { ["x"]= 333, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Necromancer/GenericMinionNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/OccultistAnointNotable.png"]= { ["x"]= 370, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Necromancer/GiftsOfTheDamned.png"]= { + ["Art/2DArt/SkillIcons/passives/OneHandedPhysicalAndLeechNotable.png"]= { ["x"]= 407, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Necromancer/OffensiveMinionNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/PathFinder/AlchemistGift.png"]= { ["x"]= 444, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Necromancer/PlagueBringer.png"]= { + ["Art/2DArt/SkillIcons/passives/PathFinder/MasterAlchemist.png"]= { ["x"]= 481, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/NecromancerAnointNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/PathFinder/MasterHerbalist.png"]= { ["x"]= 518, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Occultist/FatefulEchoes.png"]= { + ["Art/2DArt/SkillIcons/passives/PathFinder/MasterSurgeon.png"]= { ["x"]= 555, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Occultist/FrigidWake.png"]= { + ["Art/2DArt/SkillIcons/passives/PathFinder/Master Toxicist.png"]= { ["x"]= 592, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Occultist/LotusExtract.png"]= { + ["Art/2DArt/SkillIcons/passives/PathFinder/NaturesAdrenaline.png"]= { ["x"]= 629, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Occultist/SoulCatalyst.png"]= { + ["Art/2DArt/SkillIcons/passives/PathFinder/VeteranBowyer.png"]= { ["x"]= 666, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Occultist/VoidBeacon.png"]= { + ["Art/2DArt/SkillIcons/passives/PathfinderAnointNotable.png"]= { ["x"]= 703, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Occultist/VowOfDamnation.png"]= { + ["Art/2DArt/SkillIcons/passives/PhysicalDamageNotable.png"]= { ["x"]= 740, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Occultist/WitheringPresence.png"]= { + ["Art/2DArt/SkillIcons/passives/PhysicalDamageNotableGreen.png"]= { ["x"]= 777, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/OccultistAnointNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeHybrid.png"]= { ["x"]= 814, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/OneHandedPhysicalAndLeechNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNotable.png"]= { ["x"]= 851, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/PathFinder/AlchemistGift.png"]= { + ["Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimenotable1.png"]= { ["x"]= 888, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/PathFinder/MasterAlchemist.png"]= { + ["Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimenotable2.png"]= { ["x"]= 925, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/PathFinder/MasterHerbalist.png"]= { + ["Art/2DArt/SkillIcons/passives/Poison.png"]= { + ["x"]= 962, + ["y"]= 819, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/PoisonSpellsNotable.png"]= { ["x"]= 0, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/PathFinder/MasterSurgeon.png"]= { + ["Art/2DArt/SkillIcons/passives/PowerChargeNotable.png"]= { ["x"]= 37, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/PathFinder/Master Toxicist.png"]= { + ["Art/2DArt/SkillIcons/passives/Primalist/PrimalistCorpseLoot.png"]= { ["x"]= 74, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/PathFinder/NaturesAdrenaline.png"]= { + ["Art/2DArt/SkillIcons/passives/Primalist/PrimalistInventoryExpansion.png"]= { ["x"]= 111, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/PathFinder/VeteranBowyer.png"]= { + ["Art/2DArt/SkillIcons/passives/ProfaneChemistry.png"]= { ["x"]= 148, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/PathfinderAnointNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/ProjectileDmgNotable.png"]= { ["x"]= 185, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/PhysicalDamageNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/ProjectilesNotable.png"]= { ["x"]= 222, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/PhysicalDamageNotableGreen.png"]= { + ["Art/2DArt/SkillIcons/passives/ProtectiveWinds.png"]= { ["x"]= 259, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeHybrid.png"]= { + ["Art/2DArt/SkillIcons/passives/QuickRecovery.png"]= { ["x"]= 296, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/RageNotable.png"]= { ["x"]= 333, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimenotable1.png"]= { + ["Art/2DArt/SkillIcons/passives/RageNotable1.png"]= { ["x"]= 370, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimenotable2.png"]= { + ["Art/2DArt/SkillIcons/passives/RageNotable2.png"]= { ["x"]= 407, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Poison.png"]= { + ["Art/2DArt/SkillIcons/passives/RageNotable3.png"]= { ["x"]= 444, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/PoisonSpellsNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/RangedTotemCriticalStrikes.png"]= { ["x"]= 481, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/PowerChargeNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/RangedTotemOffensive.png"]= { ["x"]= 518, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Primalist/PrimalistCorpseLoot.png"]= { + ["Art/2DArt/SkillIcons/passives/RedHolyAttackNotable.png"]= { ["x"]= 555, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Primalist/PrimalistInventoryExpansion.png"]= { + ["Art/2DArt/SkillIcons/passives/Redemption.png"]= { ["x"]= 592, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ProfaneChemistry.png"]= { + ["Art/2DArt/SkillIcons/passives/ReducedManaNotable.png"]= { ["x"]= 629, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ProjectileDmgNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/ReducedProjectileSpeedNotable.png"]= { ["x"]= 666, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ProjectilesNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNotable.png"]= { ["x"]= 703, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ProtectiveWinds.png"]= { + ["Art/2DArt/SkillIcons/passives/Resourcefulness.png"]= { ["x"]= 740, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/QuickRecovery.png"]= { + ["Art/2DArt/SkillIcons/passives/Retaliation.png"]= { ["x"]= 777, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/RageNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/RetaliationAoE.png"]= { ["x"]= 814, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/RageNotable1.png"]= { + ["Art/2DArt/SkillIcons/passives/RetaliationAttackBlock.png"]= { ["x"]= 851, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/RageNotable2.png"]= { + ["Art/2DArt/SkillIcons/passives/RetaliationDurationCooldown.png"]= { ["x"]= 888, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/RageNotable3.png"]= { + ["Art/2DArt/SkillIcons/passives/RetaliationSkillDamage.png"]= { ["x"]= 925, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/RangedTotemCriticalStrikes.png"]= { + ["Art/2DArt/SkillIcons/passives/RetaliationSpellBlock.png"]= { + ["x"]= 962, + ["y"]= 856, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/RetaliationStun.png"]= { ["x"]= 0, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/RangedTotemOffensive.png"]= { + ["Art/2DArt/SkillIcons/passives/Retribution.png"]= { ["x"]= 37, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/RedHolyAttackNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Revelry.png"]= { ["x"]= 74, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Redemption.png"]= { + ["Art/2DArt/SkillIcons/passives/RighteousArmy.png"]= { ["x"]= 111, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ReducedManaNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Righteous Decree.png"]= { ["x"]= 148, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ReducedProjectileSpeedNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/RitualBloodLineNotable.png"]= { ["x"]= 185, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Robust.png"]= { ["x"]= 222, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Resourcefulness.png"]= { + ["Art/2DArt/SkillIcons/passives/Saboteur/BlindedAssult.png"]= { ["x"]= 259, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Retaliation.png"]= { + ["Art/2DArt/SkillIcons/passives/Saboteur/BombSpecialist.png"]= { ["x"]= 296, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/RetaliationAoE.png"]= { + ["Art/2DArt/SkillIcons/passives/Saboteur/ChainReaction.png"]= { ["x"]= 333, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/RetaliationAttackBlock.png"]= { + ["Art/2DArt/SkillIcons/passives/Saboteur/DemolitionSpecialist.png"]= { ["x"]= 370, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/RetaliationDurationCooldown.png"]= { + ["Art/2DArt/SkillIcons/passives/Saboteur/ExplosivesExpert.png"]= { ["x"]= 407, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/RetaliationSkillDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/Saboteur/LikeClockworkNotable.png"]= { ["x"]= 444, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/RetaliationSpellBlock.png"]= { + ["Art/2DArt/SkillIcons/passives/Saboteur/PerfectCrime.png"]= { ["x"]= 481, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/RetaliationStun.png"]= { + ["Art/2DArt/SkillIcons/passives/Saboteur/ShadowsDarknessBlind.png"]= { ["x"]= 518, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Retribution.png"]= { + ["Art/2DArt/SkillIcons/passives/Saboteur/ShrapnelSpecialist.png"]= { ["x"]= 555, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Revelry.png"]= { + ["Art/2DArt/SkillIcons/passives/SaboteurAnointNotable.png"]= { ["x"]= 592, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/RighteousArmy.png"]= { + ["Art/2DArt/SkillIcons/passives/Sanctuary.png"]= { ["x"]= 629, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Righteous Decree.png"]= { + ["Art/2DArt/SkillIcons/passives/SareshBloodlineNotable1.png"]= { ["x"]= 666, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/RitualBloodLineNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/SareshBloodlineNotable3.png"]= { ["x"]= 703, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Robust.png"]= { + ["Art/2DArt/SkillIcons/passives/SareshBloodlineNoteble2.png"]= { ["x"]= 740, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Saboteur/BlindedAssult.png"]= { + ["Art/2DArt/SkillIcons/passives/SavantPath.png"]= { ["x"]= 777, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Saboteur/BombSpecialist.png"]= { + ["Art/2DArt/SkillIcons/passives/SearingHeat.png"]= { ["x"]= 814, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Saboteur/ChainReaction.png"]= { + ["Art/2DArt/SkillIcons/passives/Sentinel.png"]= { ["x"]= 851, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Saboteur/DemolitionSpecialist.png"]= { + ["Art/2DArt/SkillIcons/passives/Shaper.png"]= { ["x"]= 888, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Saboteur/ExplosivesExpert.png"]= { + ["Art/2DArt/SkillIcons/passives/ShieldAttackDamage.png"]= { ["x"]= 925, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Saboteur/LikeClockworkNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/ShieldNotable.png"]= { + ["x"]= 962, + ["y"]= 893, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ShrugOff.png"]= { ["x"]= 0, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Saboteur/PerfectCrime.png"]= { + ["Art/2DArt/SkillIcons/passives/SkitteringRunes.png"]= { ["x"]= 37, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Saboteur/ShadowsDarknessBlind.png"]= { + ["Art/2DArt/SkillIcons/passives/Slayer/BaneOfLegends.png"]= { ["x"]= 74, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Saboteur/ShrapnelSpecialist.png"]= { + ["Art/2DArt/SkillIcons/passives/Slayer/BrutalFervor.png"]= { ["x"]= 111, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/SaboteurAnointNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Slayer/Charges.png"]= { ["x"]= 148, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Sanctuary.png"]= { + ["Art/2DArt/SkillIcons/passives/Slayer/CriticalAttacks.png"]= { ["x"]= 185, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/SareshBloodlineNotable1.png"]= { + ["Art/2DArt/SkillIcons/passives/Slayer/EndlessHunger.png"]= { ["x"]= 222, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/SareshBloodlineNotable3.png"]= { + ["Art/2DArt/SkillIcons/passives/Slayer/Headman.png"]= { ["x"]= 259, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/SareshBloodlineNoteble2.png"]= { + ["Art/2DArt/SkillIcons/passives/Slayer/Impact.png"]= { ["x"]= 296, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/SavantPath.png"]= { + ["Art/2DArt/SkillIcons/passives/SlayerAnointNotable.png"]= { ["x"]= 333, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/SearingHeat.png"]= { + ["Art/2DArt/SkillIcons/passives/SoulPact.png"]= { ["x"]= 370, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Sentinel.png"]= { + ["Art/2DArt/SkillIcons/passives/SoulSiphoning.png"]= { ["x"]= 407, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Shaper.png"]= { + ["Art/2DArt/SkillIcons/passives/SpellSuppressionLifeFlasksN.png"]= { ["x"]= 444, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ShieldAttackDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/SpellSupressionAndEnergyShieldNotable.png"]= { ["x"]= 481, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ShieldNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/SpellSupressionNotable1.png"]= { ["x"]= 518, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ShrugOff.png"]= { + ["Art/2DArt/SkillIcons/passives/SpellSupressionNotable2.png"]= { ["x"]= 555, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/SkitteringRunes.png"]= { + ["Art/2DArt/SkillIcons/passives/SpikedBulwark.png"]= { ["x"]= 592, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Slayer/BaneOfLegends.png"]= { + ["Art/2DArt/SkillIcons/passives/SpiritualAid.png"]= { ["x"]= 629, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Slayer/BrutalFervor.png"]= { + ["Art/2DArt/SkillIcons/passives/SpiritualCommand.png"]= { ["x"]= 666, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Slayer/Charges.png"]= { + ["Art/2DArt/SkillIcons/passives/StaffCrit.png"]= { ["x"]= 703, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Slayer/CriticalAttacks.png"]= { + ["Art/2DArt/SkillIcons/passives/StaffNotable.png"]= { ["x"]= 740, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Slayer/EndlessHunger.png"]= { + ["Art/2DArt/SkillIcons/passives/StaffNotable2.png"]= { ["x"]= 777, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Slayer/Headman.png"]= { + ["Art/2DArt/SkillIcons/passives/StaffNotable3.png"]= { ["x"]= 814, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Slayer/Impact.png"]= { + ["Art/2DArt/SkillIcons/passives/StanceNotableReservation.png"]= { ["x"]= 851, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/SlayerAnointNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/StanceNotableSwitching.png"]= { ["x"]= 888, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/SoulPact.png"]= { + ["Art/2DArt/SkillIcons/passives/Storm Weaver.png"]= { ["x"]= 925, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/SoulSiphoning.png"]= { + ["Art/2DArt/SkillIcons/passives/StrengthOfBlood.png"]= { + ["x"]= 962, + ["y"]= 930, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/StrikeSkillsNotable.png"]= { ["x"]= 0, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/SpellSuppressionLifeFlasksN.png"]= { + ["Art/2DArt/SkillIcons/passives/StunAvoidNotable.png"]= { ["x"]= 37, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/SpellSupressionAndEnergyShieldNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/StunMastery.png"]= { ["x"]= 74, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/SpellSupressionNotable1.png"]= { + ["Art/2DArt/SkillIcons/passives/SupremeProdigy.png"]= { ["x"]= 111, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/SpellSupressionNotable2.png"]= { + ["Art/2DArt/SkillIcons/passives/Survivalist.png"]= { ["x"]= 148, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/SpikedBulwark.png"]= { + ["Art/2DArt/SkillIcons/passives/SwordNotable1.png"]= { ["x"]= 185, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/SpiritualAid.png"]= { + ["Art/2DArt/SkillIcons/passives/TasteforBlood.png"]= { ["x"]= 222, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/SpiritualCommand.png"]= { + ["Art/2DArt/SkillIcons/passives/TempestBlast.png"]= { ["x"]= 259, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/StaffCrit.png"]= { + ["Art/2DArt/SkillIcons/passives/ThrillKiller.png"]= { ["x"]= 296, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/StaffNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/TinctureFlaskNotable1.png"]= { ["x"]= 333, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/StaffNotable2.png"]= { + ["Art/2DArt/SkillIcons/passives/TinctureManaNotable1.png"]= { ["x"]= 370, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/StaffNotable3.png"]= { + ["Art/2DArt/SkillIcons/passives/TinctureNotable1.png"]= { ["x"]= 407, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/StanceNotableReservation.png"]= { + ["Art/2DArt/SkillIcons/passives/TinctureNotable2.png"]= { ["x"]= 444, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/StanceNotableSwitching.png"]= { + ["Art/2DArt/SkillIcons/passives/TinctureNotable3.png"]= { ["x"]= 481, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Storm Weaver.png"]= { + ["Art/2DArt/SkillIcons/passives/TotemDmgNotable.png"]= { ["x"]= 518, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/StrengthOfBlood.png"]= { + ["Art/2DArt/SkillIcons/passives/Trap.png"]= { ["x"]= 555, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/StrikeSkillsNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Trap2.png"]= { ["x"]= 592, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/StunAvoidNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/TrapAndMineDmgNotable.png"]= { ["x"]= 629, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/StunMastery.png"]= { + ["Art/2DArt/SkillIcons/passives/Trickster/DamageOverTime.png"]= { ["x"]= 666, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/SupremeProdigy.png"]= { + ["Art/2DArt/SkillIcons/passives/Trickster/HeedfulRecovery.png"]= { ["x"]= 703, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Survivalist.png"]= { + ["Art/2DArt/SkillIcons/passives/Trickster/ImmuneToDoT.png"]= { ["x"]= 740, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/SwordNotable1.png"]= { + ["Art/2DArt/SkillIcons/passives/Trickster/OneStepAheadTrickster.png"]= { ["x"]= 777, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/TasteforBlood.png"]= { + ["Art/2DArt/SkillIcons/passives/Trickster/PolymathTrickster.png"]= { ["x"]= 814, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/TempestBlast.png"]= { + ["Art/2DArt/SkillIcons/passives/Trickster/SoulThiefTrickster.png"]= { ["x"]= 851, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ThrillKiller.png"]= { + ["Art/2DArt/SkillIcons/passives/Trickster/SupressionEnergyShieldTrickster.png"]= { ["x"]= 888, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/TinctureFlaskNotable1.png"]= { + ["Art/2DArt/SkillIcons/passives/Trickster/UncontrolledVigour.png"]= { ["x"]= 925, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/TinctureManaNotable1.png"]= { + ["Art/2DArt/SkillIcons/passives/TricksterAnointNotable.png"]= { + ["x"]= 962, + ["y"]= 967, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/TrueStriker.png"]= { ["x"]= 0, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/TinctureNotable1.png"]= { + ["Art/2DArt/SkillIcons/passives/TwoHandedMeleeDamage.png"]= { ["x"]= 37, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/TinctureNotable2.png"]= { + ["Art/2DArt/SkillIcons/passives/TwoHandedweaponImpalesNotable.png"]= { ["x"]= 74, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/TinctureNotable3.png"]= { + ["Art/2DArt/SkillIcons/passives/Unfaltering.png"]= { ["x"]= 111, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/TotemDmgNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Unrelenting.png"]= { ["x"]= 148, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Trap.png"]= { + ["Art/2DArt/SkillIcons/passives/Unwavering.png"]= { ["x"]= 185, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Trap2.png"]= { + ["Art/2DArt/SkillIcons/passives/UpwardsFiringProjectilesNotable.png"]= { ["x"]= 222, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/TrapAndMineDmgNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Vampirism.png"]= { ["x"]= 259, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Trickster/DamageOverTime.png"]= { + ["Art/2DArt/SkillIcons/passives/VoidBarrier.png"]= { ["x"]= 296, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Trickster/HeedfulRecovery.png"]= { + ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanBloodMagic1.png"]= { ["x"]= 333, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Trickster/ImmuneToDoT.png"]= { + ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanBloodMagic2.png"]= { ["x"]= 370, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Trickster/OneStepAheadTrickster.png"]= { + ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanBloodMagic3.png"]= { ["x"]= 407, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Trickster/PolymathTrickster.png"]= { + ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanCorpses.png"]= { ["x"]= 444, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Trickster/SoulThiefTrickster.png"]= { + ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanCurses2.png"]= { ["x"]= 481, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Trickster/SupressionEnergyShieldTrickster.png"]= { + ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanCursesChoice.png"]= { ["x"]= 518, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Trickster/UncontrolledVigour.png"]= { + ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanVoodooDoll.png"]= { ["x"]= 555, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/TricksterAnointNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/WandDamage.png"]= { ["x"]= 592, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/TrueStriker.png"]= { + ["Art/2DArt/SkillIcons/passives/WarcryBuffEffectNotable.png"]= { ["x"]= 629, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/TwoHandedMeleeDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/WarcryGainDamageNotable.png"]= { ["x"]= 666, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/TwoHandedweaponImpalesNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Warden/TinctureRangedNotable.png"]= { ["x"]= 703, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Unfaltering.png"]= { + ["Art/2DArt/SkillIcons/passives/Warden/WardenAllAilments.png"]= { ["x"]= 740, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Unrelenting.png"]= { + ["Art/2DArt/SkillIcons/passives/Warden/WardenBarkskin1.png"]= { ["x"]= 777, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Unwavering.png"]= { + ["Art/2DArt/SkillIcons/passives/Warden/WardenBarkskin2.png"]= { ["x"]= 814, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/UpwardsFiringProjectilesNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Warden/WardenColdAilments.png"]= { ["x"]= 851, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Vampirism.png"]= { + ["Art/2DArt/SkillIcons/passives/Warden/WardenFireAilments.png"]= { ["x"]= 888, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/VoidBarrier.png"]= { + ["Art/2DArt/SkillIcons/passives/Warden/WardenLightningAilments.png"]= { ["x"]= 925, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanBloodMagic1.png"]= { + ["Art/2DArt/SkillIcons/passives/Warden/WardenPrimitivism.png"]= { + ["x"]= 962, + ["y"]= 1004, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Warden/WardenSaps1.png"]= { ["x"]= 0, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanBloodMagic2.png"]= { + ["Art/2DArt/SkillIcons/passives/Warden/WardenSaps2.png"]= { ["x"]= 37, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanBloodMagic3.png"]= { + ["Art/2DArt/SkillIcons/passives/Warden/WardenSaps3.png"]= { ["x"]= 74, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanCorpses.png"]= { + ["Art/2DArt/SkillIcons/passives/Warden/WardenTracking.png"]= { ["x"]= 111, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanCurses2.png"]= { + ["Art/2DArt/SkillIcons/passives/WardenAnointNotable.png"]= { ["x"]= 148, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanCursesChoice.png"]= { + ["Art/2DArt/SkillIcons/passives/Warrior.png"]= { ["x"]= 185, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanVoodooDoll.png"]= { + ["Art/2DArt/SkillIcons/passives/WeaponElementalNotable.png"]= { ["x"]= 222, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/WandDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/WritteninBlood.png"]= { ["x"]= 259, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/WarcryBuffEffectNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/accuracydex.png"]= { ["x"]= 296, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/WarcryGainDamageNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/adderstouch.png"]= { ["x"]= 333, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Warden/TinctureRangedNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/ambidexterity.png"]= { ["x"]= 370, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Warden/WardenAllAilments.png"]= { + ["Art/2DArt/SkillIcons/passives/amplify.png"]= { ["x"]= 407, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Warden/WardenBarkskin1.png"]= { + ["Art/2DArt/SkillIcons/passives/animalspirit.png"]= { ["x"]= 444, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Warden/WardenBarkskin2.png"]= { + ["Art/2DArt/SkillIcons/passives/arcaneefficiency.png"]= { ["x"]= 481, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Warden/WardenColdAilments.png"]= { + ["Art/2DArt/SkillIcons/passives/arcane focus.png"]= { ["x"]= 518, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Warden/WardenFireAilments.png"]= { + ["Art/2DArt/SkillIcons/passives/arcanepotency.png"]= { ["x"]= 555, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Warden/WardenLightningAilments.png"]= { + ["Art/2DArt/SkillIcons/passives/arcaneradience.png"]= { ["x"]= 592, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Warden/WardenPrimitivism.png"]= { + ["Art/2DArt/SkillIcons/passives/armourmastery.png"]= { ["x"]= 629, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Warden/WardenSaps1.png"]= { + ["Art/2DArt/SkillIcons/passives/arsonist.png"]= { ["x"]= 666, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Warden/WardenSaps2.png"]= { + ["Art/2DArt/SkillIcons/passives/ashfrostandstorm.png"]= { ["x"]= 703, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Warden/WardenSaps3.png"]= { + ["Art/2DArt/SkillIcons/passives/attackspeedbow.png"]= { ["x"]= 740, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Warden/WardenTracking.png"]= { + ["Art/2DArt/SkillIcons/passives/authority.png"]= { ["x"]= 777, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/WardenAnointNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/barricade.png"]= { ["x"]= 814, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Warrior.png"]= { + ["Art/2DArt/SkillIcons/passives/berserking.png"]= { ["x"]= 851, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/WeaponElementalNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/bladebarrier.png"]= { ["x"]= 888, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/WritteninBlood.png"]= { + ["Art/2DArt/SkillIcons/passives/blademaster.png"]= { ["x"]= 925, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/accuracydex.png"]= { + ["Art/2DArt/SkillIcons/passives/blademistress.png"]= { + ["x"]= 962, + ["y"]= 1041, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/blastradius.png"]= { ["x"]= 0, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/adderstouch.png"]= { + ["Art/2DArt/SkillIcons/passives/bodysoul.png"]= { ["x"]= 37, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ambidexterity.png"]= { + ["Art/2DArt/SkillIcons/passives/borntofight.png"]= { ["x"]= 74, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/amplify.png"]= { + ["Art/2DArt/SkillIcons/passives/breathofrime.png"]= { ["x"]= 111, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/animalspirit.png"]= { + ["Art/2DArt/SkillIcons/passives/butchery.png"]= { ["x"]= 148, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/arcaneefficiency.png"]= { + ["Art/2DArt/SkillIcons/passives/castavoidinterruption.png"]= { ["x"]= 185, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/arcane focus.png"]= { + ["Art/2DArt/SkillIcons/passives/catalyse.png"]= { ["x"]= 222, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/arcanepotency.png"]= { + ["Art/2DArt/SkillIcons/passives/chargedex.png"]= { ["x"]= 259, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/arcaneradience.png"]= { + ["Art/2DArt/SkillIcons/passives/chargeint.png"]= { ["x"]= 296, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/armourmastery.png"]= { + ["Art/2DArt/SkillIcons/passives/chargestr.png"]= { ["x"]= 333, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/arsonist.png"]= { + ["Art/2DArt/SkillIcons/passives/cleverconstruction.png"]= { ["x"]= 370, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ashfrostandstorm.png"]= { + ["Art/2DArt/SkillIcons/passives/clustersLink2.png"]= { ["x"]= 407, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/attackspeedbow.png"]= { + ["Art/2DArt/SkillIcons/passives/clustersLink3.png"]= { ["x"]= 444, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/authority.png"]= { + ["Art/2DArt/SkillIcons/passives/criticalstrikemultiplier2.png"]= { ["x"]= 481, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/barricade.png"]= { + ["Art/2DArt/SkillIcons/passives/cruelblade.png"]= { ["x"]= 518, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/berserking.png"]= { + ["Art/2DArt/SkillIcons/passives/daggerpenetration.png"]= { ["x"]= 555, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/bladebarrier.png"]= { + ["Art/2DArt/SkillIcons/passives/deadlydraw.png"]= { ["x"]= 592, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/blademaster.png"]= { + ["Art/2DArt/SkillIcons/passives/deadlyprecision.png"]= { ["x"]= 629, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/blademistress.png"]= { + ["Art/2DArt/SkillIcons/passives/deathattunement.png"]= { ["x"]= 666, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/blastradius.png"]= { + ["Art/2DArt/SkillIcons/passives/deepthoughts.png"]= { ["x"]= 703, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/bodysoul.png"]= { + ["Art/2DArt/SkillIcons/passives/deepwisdom.png"]= { ["x"]= 740, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/borntofight.png"]= { + ["Art/2DArt/SkillIcons/passives/diamondskin.png"]= { ["x"]= 777, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/breathofrime.png"]= { + ["Art/2DArt/SkillIcons/passives/doomcast.png"]= { ["x"]= 814, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/butchery.png"]= { + ["Art/2DArt/SkillIcons/passives/eagleeye.png"]= { ["x"]= 851, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/castavoidinterruption.png"]= { + ["Art/2DArt/SkillIcons/passives/eagletalons.png"]= { ["x"]= 888, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/catalyse.png"]= { + ["Art/2DArt/SkillIcons/passives/elderpower.png"]= { ["x"]= 925, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/chargedex.png"]= { + ["Art/2DArt/SkillIcons/passives/elementalist.png"]= { + ["x"]= 962, + ["y"]= 1078, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/evasion.png"]= { ["x"]= 0, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/chargeint.png"]= { + ["Art/2DArt/SkillIcons/passives/executioner.png"]= { ["x"]= 37, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/chargestr.png"]= { + ["Art/2DArt/SkillIcons/passives/expeditiousmunitions.png"]= { ["x"]= 74, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/cleverconstruction.png"]= { + ["Art/2DArt/SkillIcons/passives/fellingtheweak.png"]= { ["x"]= 111, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/clustersLink2.png"]= { + ["Art/2DArt/SkillIcons/passives/fending.png"]= { ["x"]= 148, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/clustersLink3.png"]= { + ["Art/2DArt/SkillIcons/passives/finesse.png"]= { ["x"]= 185, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/criticalstrikemultiplier2.png"]= { + ["Art/2DArt/SkillIcons/passives/firedamage.png"]= { ["x"]= 222, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/cruelblade.png"]= { + ["Art/2DArt/SkillIcons/passives/flameborn.png"]= { ["x"]= 259, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/daggerpenetration.png"]= { + ["Art/2DArt/SkillIcons/passives/flaying.png"]= { ["x"]= 296, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/deadlydraw.png"]= { + ["Art/2DArt/SkillIcons/passives/foresight.png"]= { ["x"]= 333, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/deadlyprecision.png"]= { + ["Art/2DArt/SkillIcons/passives/frostborn.png"]= { ["x"]= 370, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/deathattunement.png"]= { + ["Art/2DArt/SkillIcons/passives/furybolts.png"]= { ["x"]= 407, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/deepthoughts.png"]= { + ["Art/2DArt/SkillIcons/passives/fussilade.png"]= { ["x"]= 444, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/deepwisdom.png"]= { + ["Art/2DArt/SkillIcons/passives/galvanichammer.png"]= { ["x"]= 481, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/diamondskin.png"]= { + ["Art/2DArt/SkillIcons/passives/golemsblood.png"]= { ["x"]= 518, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/doomcast.png"]= { + ["Art/2DArt/SkillIcons/passives/grace.png"]= { ["x"]= 555, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/eagleeye.png"]= { + ["Art/2DArt/SkillIcons/passives/graveexpectations.png"]= { ["x"]= 592, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/eagletalons.png"]= { + ["Art/2DArt/SkillIcons/passives/graveintentions.png"]= { ["x"]= 629, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/elderpower.png"]= { + ["Art/2DArt/SkillIcons/passives/gravepact.png"]= { ["x"]= 666, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/elementalist.png"]= { + ["Art/2DArt/SkillIcons/passives/hammerblows.png"]= { ["x"]= 703, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/evasion.png"]= { + ["Art/2DArt/SkillIcons/passives/hatchetmaster.png"]= { ["x"]= 740, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/executioner.png"]= { + ["Art/2DArt/SkillIcons/passives/heartofthegladiator.png"]= { ["x"]= 777, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/expeditiousmunitions.png"]= { + ["Art/2DArt/SkillIcons/passives/heartpierce.png"]= { ["x"]= 814, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/fellingtheweak.png"]= { + ["Art/2DArt/SkillIcons/passives/heartseeker.png"]= { ["x"]= 851, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/fending.png"]= { + ["Art/2DArt/SkillIcons/passives/heavydraw.png"]= { ["x"]= 888, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/finesse.png"]= { + ["Art/2DArt/SkillIcons/passives/hellfire.png"]= { ["x"]= 925, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/firedamage.png"]= { + ["Art/2DArt/SkillIcons/passives/highexplosives.png"]= { + ["x"]= 962, + ["y"]= 1115, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/icebite.png"]= { ["x"]= 0, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/flameborn.png"]= { + ["Art/2DArt/SkillIcons/passives/iceheart.png"]= { ["x"]= 37, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/flaying.png"]= { + ["Art/2DArt/SkillIcons/passives/increased armor.png"]= { ["x"]= 74, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/foresight.png"]= { + ["Art/2DArt/SkillIcons/passives/influence.png"]= { ["x"]= 111, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/frostborn.png"]= { + ["Art/2DArt/SkillIcons/passives/innerforce.png"]= { ["x"]= 148, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/furybolts.png"]= { + ["Art/2DArt/SkillIcons/passives/ironwoodtotem.png"]= { ["x"]= 185, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/fussilade.png"]= { + ["Art/2DArt/SkillIcons/passives/kingofthehill.png"]= { ["x"]= 222, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/galvanichammer.png"]= { + ["Art/2DArt/SkillIcons/passives/lavalash.png"]= { ["x"]= 259, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/golemsblood.png"]= { + ["Art/2DArt/SkillIcons/passives/leadership.png"]= { ["x"]= 296, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/grace.png"]= { + ["Art/2DArt/SkillIcons/passives/legendaryswordsman.png"]= { ["x"]= 333, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/graveexpectations.png"]= { + ["Art/2DArt/SkillIcons/passives/life1.png"]= { ["x"]= 370, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/graveintentions.png"]= { + ["Art/2DArt/SkillIcons/passives/lifeleech.png"]= { ["x"]= 407, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/gravepact.png"]= { + ["Art/2DArt/SkillIcons/passives/lifeleechimmunity.png"]= { ["x"]= 444, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/hammerblows.png"]= { + ["Art/2DArt/SkillIcons/passives/lightningint.png"]= { ["x"]= 481, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/hatchetmaster.png"]= { + ["Art/2DArt/SkillIcons/passives/lordofthedead.png"]= { ["x"]= 518, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/heartofthegladiator.png"]= { + ["Art/2DArt/SkillIcons/passives/macedmg.png"]= { ["x"]= 555, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/heartpierce.png"]= { + ["Art/2DArt/SkillIcons/passives/manaconduit.png"]= { ["x"]= 592, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/heartseeker.png"]= { + ["Art/2DArt/SkillIcons/passives/masterfletcher.png"]= { ["x"]= 629, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/heavydraw.png"]= { + ["Art/2DArt/SkillIcons/passives/mastersapper.png"]= { ["x"]= 666, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/hellfire.png"]= { + ["Art/2DArt/SkillIcons/passives/masterywand.png"]= { ["x"]= 703, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/highexplosives.png"]= { + ["Art/2DArt/SkillIcons/passives/melding.png"]= { ["x"]= 740, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/icebite.png"]= { + ["Art/2DArt/SkillIcons/passives/mentalacuity.png"]= { ["x"]= 777, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/iceheart.png"]= { + ["Art/2DArt/SkillIcons/passives/minddrinker.png"]= { ["x"]= 814, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/increased armor.png"]= { + ["Art/2DArt/SkillIcons/passives/minionblockchance.png"]= { ["x"]= 851, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/influence.png"]= { + ["Art/2DArt/SkillIcons/passives/newcolddamage.png"]= { ["x"]= 888, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/innerforce.png"]= { + ["Art/2DArt/SkillIcons/passives/newenergyshield.png"]= { ["x"]= 925, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ironwoodtotem.png"]= { + ["Art/2DArt/SkillIcons/passives/newevadepercentage.png"]= { + ["x"]= 962, + ["y"]= 1152, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/newincreasedcritical.png"]= { ["x"]= 0, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/kingofthehill.png"]= { + ["Art/2DArt/SkillIcons/passives/newnewattackspeed.png"]= { ["x"]= 37, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/lavalash.png"]= { + ["Art/2DArt/SkillIcons/passives/newtitanicmight.png"]= { ["x"]= 74, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/leadership.png"]= { + ["Art/2DArt/SkillIcons/passives/nightstalker.png"]= { ["x"]= 111, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/legendaryswordsman.png"]= { + ["Art/2DArt/SkillIcons/passives/nimbleness.png"]= { ["x"]= 148, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/life1.png"]= { + ["Art/2DArt/SkillIcons/passives/oxblood.png"]= { ["x"]= 185, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/lifeleech.png"]= { + ["Art/2DArt/SkillIcons/passives/perfectaim.png"]= { ["x"]= 222, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/lifeleechimmunity.png"]= { + ["Art/2DArt/SkillIcons/passives/plusdexterity.png"]= { ["x"]= 259, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/lightningint.png"]= { + ["Art/2DArt/SkillIcons/passives/plusintelligence.png"]= { ["x"]= 296, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/lordofthedead.png"]= { + ["Art/2DArt/SkillIcons/passives/plusstrength.png"]= { ["x"]= 333, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/macedmg.png"]= { + ["Art/2DArt/SkillIcons/passives/potencyofwill.png"]= { ["x"]= 370, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/manaconduit.png"]= { + ["Art/2DArt/SkillIcons/passives/precision.png"]= { ["x"]= 407, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/masterfletcher.png"]= { + ["Art/2DArt/SkillIcons/passives/pyromaniac.png"]= { ["x"]= 444, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/mastersapper.png"]= { + ["Art/2DArt/SkillIcons/passives/quickstep.png"]= { ["x"]= 481, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/masterywand.png"]= { + ["Art/2DArt/SkillIcons/passives/razorsedge.png"]= { ["x"]= 518, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/melding.png"]= { + ["Art/2DArt/SkillIcons/passives/reaver.png"]= { ["x"]= 555, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/mentalacuity.png"]= { + ["Art/2DArt/SkillIcons/passives/revengeofthehunted.png"]= { ["x"]= 592, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/minddrinker.png"]= { + ["Art/2DArt/SkillIcons/passives/saboteur.png"]= { ["x"]= 629, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/minionblockchance.png"]= { + ["Art/2DArt/SkillIcons/passives/savant.png"]= { ["x"]= 666, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/newcolddamage.png"]= { + ["Art/2DArt/SkillIcons/passives/scissorblades.png"]= { ["x"]= 703, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/newenergyshield.png"]= { + ["Art/2DArt/SkillIcons/passives/serpentstance.png"]= { ["x"]= 740, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/newevadepercentage.png"]= { + ["Art/2DArt/SkillIcons/passives/shamsnisticfury.png"]= { ["x"]= 777, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/newincreasedcritical.png"]= { + ["Art/2DArt/SkillIcons/passives/shieldwall.png"]= { ["x"]= 814, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/newnewattackspeed.png"]= { + ["Art/2DArt/SkillIcons/passives/skullcracking.png"]= { ["x"]= 851, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/newtitanicmight.png"]= { + ["Art/2DArt/SkillIcons/passives/soulsyphon.png"]= { ["x"]= 888, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/nightstalker.png"]= { + ["Art/2DArt/SkillIcons/passives/sovereignty.png"]= { ["x"]= 925, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/nimbleness.png"]= { + ["Art/2DArt/SkillIcons/passives/sparkingattacks.png"]= { + ["x"]= 962, + ["y"]= 1189, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/stabbingcomeback.png"]= { ["x"]= 0, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/oxblood.png"]= { + ["Art/2DArt/SkillIcons/passives/staticshield.png"]= { ["x"]= 37, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/perfectaim.png"]= { + ["Art/2DArt/SkillIcons/passives/stormborn.png"]= { ["x"]= 74, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/plusdexterity.png"]= { + ["Art/2DArt/SkillIcons/passives/strongarm.png"]= { ["x"]= 111, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/plusintelligence.png"]= { + ["Art/2DArt/SkillIcons/passives/stunmace.png"]= { ["x"]= 148, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/plusstrength.png"]= { + ["Art/2DArt/SkillIcons/passives/stunstaff.png"]= { ["x"]= 185, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/potencyofwill.png"]= { + ["Art/2DArt/SkillIcons/passives/swagger.png"]= { ["x"]= 222, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/precision.png"]= { + ["Art/2DArt/SkillIcons/passives/swashbuckler.png"]= { ["x"]= 259, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/pyromaniac.png"]= { + ["Art/2DArt/SkillIcons/passives/talonsofmurder.png"]= { ["x"]= 296, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/quickstep.png"]= { + ["Art/2DArt/SkillIcons/passives/thickskin.png"]= { ["x"]= 333, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/razorsedge.png"]= { + ["Art/2DArt/SkillIcons/passives/throatseeker.png"]= { ["x"]= 370, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/reaver.png"]= { + ["Art/2DArt/SkillIcons/passives/titanicmight.png"]= { ["x"]= 407, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/revengeofthehunted.png"]= { + ["Art/2DArt/SkillIcons/passives/totemandbrandrange.png"]= { ["x"]= 444, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/saboteur.png"]= { + ["Art/2DArt/SkillIcons/passives/totemicmastery.png"]= { ["x"]= 481, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/savant.png"]= { + ["Art/2DArt/SkillIcons/passives/totemiczeal.png"]= { ["x"]= 518, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/scissorblades.png"]= { + ["Art/2DArt/SkillIcons/passives/trapsradius.png"]= { ["x"]= 555, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/serpentstance.png"]= { + ["Art/2DArt/SkillIcons/passives/trollblood.png"]= { ["x"]= 592, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/shamsnisticfury.png"]= { + ["Art/2DArt/SkillIcons/passives/volitilemines.png"]= { ["x"]= 629, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/shieldwall.png"]= { + ["Art/2DArt/SkillIcons/passives/wandslingersprowess.png"]= { ["x"]= 666, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/skullcracking.png"]= { + ["Art/2DArt/SkillIcons/passives/whirlingstaff.png"]= { ["x"]= 703, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/soulsyphon.png"]= { + ["Art/2DArt/SkillIcons/passives/wreckingball.png"]= { ["x"]= 740, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/sovereignty.png"]= { + ["Art/2DArt/SkillIcons/passives/Ascendants/Assassin.png"]= { ["x"]= 777, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/sparkingattacks.png"]= { + ["Art/2DArt/SkillIcons/passives/Ascendants/Berserker.png"]= { ["x"]= 814, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/stabbingcomeback.png"]= { + ["Art/2DArt/SkillIcons/passives/Ascendants/Champion.png"]= { ["x"]= 851, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/staticshield.png"]= { + ["Art/2DArt/SkillIcons/passives/Ascendants/Chieftain.png"]= { ["x"]= 888, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/stormborn.png"]= { + ["Art/2DArt/SkillIcons/passives/Ascendants/Deadeye.png"]= { ["x"]= 925, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/strongarm.png"]= { + ["Art/2DArt/SkillIcons/passives/Ascendants/Elementalist.png"]= { + ["x"]= 962, + ["y"]= 1226, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/Gladiator.png"]= { ["x"]= 0, ["y"]= 1263, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/stunmace.png"]= { + ["Art/2DArt/SkillIcons/passives/Ascendants/Guardian.png"]= { ["x"]= 37, ["y"]= 1263, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/stunstaff.png"]= { + ["Art/2DArt/SkillIcons/passives/Ascendants/Hierophant.png"]= { ["x"]= 74, ["y"]= 1263, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/swagger.png"]= { + ["Art/2DArt/SkillIcons/passives/Ascendants/Inquisitor.png"]= { ["x"]= 111, ["y"]= 1263, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/swashbuckler.png"]= { + ["Art/2DArt/SkillIcons/passives/Ascendants/Juggernaut.png"]= { ["x"]= 148, ["y"]= 1263, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/talonsofmurder.png"]= { + ["Art/2DArt/SkillIcons/passives/Ascendants/Necromancer.png"]= { ["x"]= 185, ["y"]= 1263, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/thickskin.png"]= { + ["Art/2DArt/SkillIcons/passives/Ascendants/Occultist.png"]= { ["x"]= 222, ["y"]= 1263, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/throatseeker.png"]= { + ["Art/2DArt/SkillIcons/passives/Ascendants/Pathfinder.png"]= { ["x"]= 259, ["y"]= 1263, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/titanicmight.png"]= { + ["Art/2DArt/SkillIcons/passives/Ascendants/Raider.png"]= { ["x"]= 296, ["y"]= 1263, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/totemandbrandrange.png"]= { + ["Art/2DArt/SkillIcons/passives/Ascendants/Saboteur.png"]= { ["x"]= 333, ["y"]= 1263, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/totemicmastery.png"]= { + ["Art/2DArt/SkillIcons/passives/Ascendants/Slayer.png"]= { ["x"]= 370, ["y"]= 1263, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/totemiczeal.png"]= { + ["Art/2DArt/SkillIcons/passives/Ascendants/Trickster.png"]= { ["x"]= 407, ["y"]= 1263, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/trapsradius.png"]= { + ["Art/2DArt/SkillIcons/passives/Assassin/Ambush.png"]= { ["x"]= 444, ["y"]= 1263, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/trollblood.png"]= { + ["Art/2DArt/SkillIcons/passives/Chieftain/TawhoaForestsStrength.png"]= { ["x"]= 481, ["y"]= 1263, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/volitilemines.png"]= { - ["x"]= 518, - ["y"]= 1263, - ["w"]= 37, - ["h"]= 37 - }, - ["Art/2DArt/SkillIcons/passives/wandslingersprowess.png"]= { - ["x"]= 555, - ["y"]= 1263, - ["w"]= 37, - ["h"]= 37 - }, - ["Art/2DArt/SkillIcons/passives/whirlingstaff.png"]= { - ["x"]= 592, - ["y"]= 1263, - ["w"]= 37, - ["h"]= 37 - }, - ["Art/2DArt/SkillIcons/passives/wreckingball.png"]= { - ["x"]= 629, - ["y"]= 1263, - ["w"]= 37, - ["h"]= 37 - }, ["Art/2DArt/SkillIcons/passives/HinekoraPassiveIcon1.png"]= { - ["x"]= 666, + ["x"]= 518, ["y"]= 1263, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/HinekoraPassiveIcon2.png"]= { - ["x"]= 703, + ["x"]= 555, ["y"]= 1263, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/HinekoraPassiveIcon3.png"]= { - ["x"]= 740, + ["x"]= 592, ["y"]= 1263, ["w"]= 37, ["h"]= 37 @@ -13977,8 +14229,8 @@ return { } }, ["keystoneInactive"]= { - ["filename"]= "https://web.poecdn.com/image/passive-skill/skills-disabled-3.jpg?ac7492dd", - ["w"]= 962, + ["filename"]= "https://web.poecdn.com/image/passive-skill/skills-disabled-3.jpg?94caf4e2", + ["w"]= 999, ["h"]= 1459, ["coords"]= { ["Art/2DArt/SkillIcons/passives/AnointOnlyKeystone.png"]= { @@ -14090,217 +14342,217 @@ return { ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/KeystoneEldritchBattery.png"]= { - ["x"]= 0, - ["y"]= 1353, + ["x"]= 936, + ["y"]= 1300, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/KeystoneElementalEquilibrium.png"]= { - ["x"]= 52, + ["x"]= 0, ["y"]= 1353, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/KeystoneElementalOverload.png"]= { - ["x"]= 104, + ["x"]= 52, ["y"]= 1353, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/KeystoneHexMaster.png"]= { - ["x"]= 156, + ["x"]= 104, ["y"]= 1353, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/KeystoneIronGrip.png"]= { - ["x"]= 208, + ["x"]= 156, ["y"]= 1353, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/KeystoneIronReflexes.png"]= { - ["x"]= 260, + ["x"]= 208, ["y"]= 1353, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/KeystoneIronWill.png"]= { - ["x"]= 312, + ["x"]= 260, ["y"]= 1353, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/KeystoneMinionInstability.png"]= { - ["x"]= 364, + ["x"]= 312, ["y"]= 1353, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/KeystoneNecromanticAegis.png"]= { - ["x"]= 416, + ["x"]= 364, ["y"]= 1353, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/KeystonePainAttunement.png"]= { - ["x"]= 468, + ["x"]= 416, ["y"]= 1353, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/KeystonePointBlankArcher.png"]= { - ["x"]= 520, + ["x"]= 468, ["y"]= 1353, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/KeystoneResoluteTechnique.png"]= { - ["x"]= 572, + ["x"]= 520, ["y"]= 1353, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/KeystoneUnwaveringStance.png"]= { - ["x"]= 624, + ["x"]= 572, ["y"]= 1353, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/Kineticism.png"]= { - ["x"]= 676, + ["x"]= 624, ["y"]= 1353, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/LoneMessenger.png"]= { - ["x"]= 728, + ["x"]= 676, ["y"]= 1353, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/MiracleMaker.png"]= { - ["x"]= 780, + ["x"]= 728, ["y"]= 1353, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/MomentofRespite.png"]= { - ["x"]= 832, + ["x"]= 780, ["y"]= 1353, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/NaturesPatience.png"]= { - ["x"]= 884, + ["x"]= 832, ["y"]= 1353, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/Occultist/EldrichBarrier.png"]= { - ["x"]= 0, - ["y"]= 1406, + ["x"]= 884, + ["y"]= 1353, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/Pitfighter.png"]= { - ["x"]= 52, - ["y"]= 1406, + ["x"]= 936, + ["y"]= 1353, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/PreciseTechnique.png"]= { - ["x"]= 104, + ["x"]= 0, ["y"]= 1406, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/Resilience.png"]= { - ["x"]= 156, + ["x"]= 52, ["y"]= 1406, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/RetaliationKeystone.png"]= { - ["x"]= 208, + ["x"]= 104, ["y"]= 1406, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/SacredBastionKeystone.png"]= { - ["x"]= 260, + ["x"]= 156, ["y"]= 1406, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/SecretOfAgony.png"]= { - ["x"]= 312, + ["x"]= 208, ["y"]= 1406, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/SupremeEgo.png"]= { - ["x"]= 364, + ["x"]= 260, ["y"]= 1406, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/TinctureKeystone1.png"]= { - ["x"]= 416, + ["x"]= 312, ["y"]= 1406, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/Trickster/AcrobaticWillpower.png"]= { - ["x"]= 468, + ["x"]= 364, ["y"]= 1406, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/VersatileCombatant.png"]= { - ["x"]= 520, + ["x"]= 416, ["y"]= 1406, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/VeteransAwareness.png"]= { - ["x"]= 572, + ["x"]= 468, ["y"]= 1406, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/WindDancer.png"]= { - ["x"]= 624, + ["x"]= 520, ["y"]= 1406, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/ghostreaver.png"]= { - ["x"]= 676, + ["x"]= 572, ["y"]= 1406, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/heroicspirit.png"]= { - ["x"]= 728, + ["x"]= 624, ["y"]= 1406, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/liferegentoenergyshield.png"]= { - ["x"]= 780, + ["x"]= 676, ["y"]= 1406, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/totemmax.png"]= { - ["x"]= 832, + ["x"]= 728, ["y"]= 1406, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/vaalpact.png"]= { - ["x"]= 884, + ["x"]= 780, ["y"]= 1406, ["w"]= 52, ["h"]= 53 @@ -17169,9 +17421,9 @@ return { } }, ["tattooActiveEffect"]= { - ["filename"]= "https://web.poecdn.com/image/passive-skill/tattoo-active-effect-3.png?3b0007d2", + ["filename"]= "https://web.poecdn.com/image/passive-skill/tattoo-active-effect-3.png?b8637bfd", ["w"]= 556, - ["h"]= 704, + ["h"]= 842, ["coords"]= { ["Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/ArohonguiTribePassiveBG.png"]= { ["x"]= 0, @@ -17191,65 +17443,77 @@ return { ["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/KeystoneHinekoraPassiveBG.png"]= { + ["x"]= { + 417, + 0 + }, + ["y"]= { + 0, + 552 + }, + ["w"]= { + 139, + 288 + }, + ["h"]= { + 138, + 290 + } }, - ["Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/NgamahuTribePassiveBG.png"]= { + ["Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KitavaTribePassiveBG.png"]= { ["x"]= 0, ["y"]= 138, ["w"]= 139, ["h"]= 138 }, - ["Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/RamakoTribePassiveBG.png"]= { + ["Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/NgamahuTribePassiveBG.png"]= { ["x"]= 139, ["y"]= 138, ["w"]= 139, ["h"]= 138 }, - ["Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/RongokuraiTribePassiveBG.png"]= { + ["Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/RamakoTribePassiveBG.png"]= { ["x"]= 278, ["y"]= 138, ["w"]= 139, ["h"]= 138 }, - ["Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/TasalioTribePassiveBG.png"]= { + ["Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/RongokuraiTribePassiveBG.png"]= { ["x"]= 417, ["y"]= 138, ["w"]= 139, ["h"]= 138 }, - ["Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/TawhoaTribePassiveBG.png"]= { + ["Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/TasalioTribePassiveBG.png"]= { ["x"]= 0, ["y"]= 276, ["w"]= 139, ["h"]= 138 }, - ["Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/TukohamaTribePassiveBG.png"]= { + ["Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/TawhoaTribePassiveBG.png"]= { ["x"]= 139, ["y"]= 276, ["w"]= 139, ["h"]= 138 }, - ["Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/ValakoTribePassiveBG.png"]= { + ["Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/TukohamaTribePassiveBG.png"]= { ["x"]= 278, ["y"]= 276, ["w"]= 139, ["h"]= 138 }, - ["Art/2DArt/UIImages/InGame/Village/RuneCraftingPassiveBG.png"]= { + ["Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/ValakoTribePassiveBG.png"]= { ["x"]= 417, ["y"]= 276, ["w"]= 139, ["h"]= 138 }, - ["Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png"]= { + ["Art/2DArt/UIImages/InGame/Village/RuneCraftingPassiveBG.png"]= { ["x"]= 0, ["y"]= 414, - ["w"]= 288, - ["h"]= 290 + ["w"]= 139, + ["h"]= 138 } } }, diff --git a/src/TreeData/3_28_alternate/tattoo-active-effect-3.png b/src/TreeData/3_28_alternate/tattoo-active-effect-3.png index 1dcfb6763eb..ed968d559f7 100644 Binary files a/src/TreeData/3_28_alternate/tattoo-active-effect-3.png and b/src/TreeData/3_28_alternate/tattoo-active-effect-3.png differ diff --git a/src/TreeData/3_28_alternate/tree.lua b/src/TreeData/3_28_alternate/tree.lua index 62aa65b0511..ff5e313e555 100644 --- a/src/TreeData/3_28_alternate/tree.lua +++ b/src/TreeData/3_28_alternate/tree.lua @@ -10,10 +10,6 @@ return { { ["id"]= "Ascendant", ["name"]= "Scavenger" - }, - { - ["id"]= "Reliquarian", - ["name"]= "Scavenger" } } }, @@ -1418,6 +1414,7 @@ return { "988", "1525", "307", + "36659", "7629" } }, @@ -15097,7 +15094,7 @@ return { }, [35069]= { ["skill"]= 35069, - ["name"]= " Lightning Damage", + ["name"]= "Lightning Damage", ["icon"]= "Art/2DArt/SkillIcons/passives/AtlasTrees/BreachBossClaspedHands.png", ["ascendancyName"]= "Breachlord", ["isBloodline"]= true, @@ -17398,7 +17395,8 @@ return { ["orbit"]= 4, ["orbitIndex"]= 15, ["out"]= { - "307" + "307", + "36659" }, ["in"]= { "988" @@ -17494,7 +17492,8 @@ return { ["orbitIndex"]= 5, ["out"]= { "307", - "42689" + "42689", + "36659" }, ["in"]= {} }, @@ -17613,6 +17612,22 @@ return { "39463" } }, + [36659]= { + ["skill"]= 36659, + ["name"]= "Tabula Rasa", + ["icon"]= "Art/2DArt/SkillIcons/passives/KeystoneArmourMaster.png", + ["isNotable"]= true, + ["ascendancyName"]= "Ascendant", + ["stats"]= {}, + ["group"]= 60, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= {}, + ["in"]= { + "4888", + "39463" + } + }, [7629]= { ["skill"]= 7629, ["name"]= "Passive Point", diff --git a/src/TreeData/3_28_ruthless/skills-3.jpg b/src/TreeData/3_28_ruthless/skills-3.jpg index 849a354f836..8cf716e1509 100644 Binary files a/src/TreeData/3_28_ruthless/skills-3.jpg and b/src/TreeData/3_28_ruthless/skills-3.jpg differ diff --git a/src/TreeData/3_28_ruthless/skills-disabled-3.jpg b/src/TreeData/3_28_ruthless/skills-disabled-3.jpg index de90f50dcc8..4f88dd42e36 100644 Binary files a/src/TreeData/3_28_ruthless/skills-disabled-3.jpg and b/src/TreeData/3_28_ruthless/skills-disabled-3.jpg differ diff --git a/src/TreeData/3_28_ruthless/sprites.lua b/src/TreeData/3_28_ruthless/sprites.lua index d629e41ba29..d18dd287028 100644 --- a/src/TreeData/3_28_ruthless/sprites.lua +++ b/src/TreeData/3_28_ruthless/sprites.lua @@ -46,8 +46,8 @@ return { } }, ["normalActive"]= { - ["filename"]= "https://web.poecdn.com/image/passive-skill/skills-3.jpg?24c5e3b9", - ["w"]= 962, + ["filename"]= "https://web.poecdn.com/image/passive-skill/skills-3.jpg?b1b66a3b", + ["w"]= 999, ["h"]= 1459, ["coords"]= { ["Art/2DArt/SkillIcons/passives/2handeddamage.png"]= { @@ -273,2539 +273,2539 @@ return { ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/AtlasTrees/BestiaryNode1.png"]= { + ["x"]= 962, + ["y"]= 0, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/BestiaryNotable4.png"]= { ["x"]= 0, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/AtlasTrees/BestiaryNotable4.png"]= { + ["Art/2DArt/SkillIcons/passives/AtlasTrees/BestiaryNotable5.png"]= { ["x"]= 26, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/AtlasTrees/BestiaryNotable5.png"]= { + ["Art/2DArt/SkillIcons/passives/AtlasTrees/BestiaryNotable6.png"]= { ["x"]= 52, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/AtlasTrees/BestiaryNotable6.png"]= { + ["Art/2DArt/SkillIcons/passives/AtlasTrees/BloodLineOlrothRune1.png"]= { ["x"]= 78, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/AtlasTrees/BloodLineOlrothRune1.png"]= { + ["Art/2DArt/SkillIcons/passives/AtlasTrees/BloodLineOlrothRune2.png"]= { ["x"]= 104, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/AtlasTrees/BloodLineOlrothRune2.png"]= { + ["Art/2DArt/SkillIcons/passives/AtlasTrees/BloodLineOlrothRune3.png"]= { ["x"]= 130, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/AtlasTrees/BloodLineOlrothRune3.png"]= { + ["Art/2DArt/SkillIcons/passives/AtlasTrees/BoldUndertaking.png"]= { ["x"]= 156, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/AtlasTrees/BoldUndertaking.png"]= { + ["Art/2DArt/SkillIcons/passives/AtlasTrees/BreachBossClaspedHands.png"]= { ["x"]= 182, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/AtlasTrees/BreachBossClaspedHands.png"]= { + ["Art/2DArt/SkillIcons/passives/AtlasTrees/DeliriumNode1.png"]= { ["x"]= 208, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/AtlasTrees/DeliriumNode1.png"]= { + ["Art/2DArt/SkillIcons/passives/AtlasTrees/ExpeditionNode1.png"]= { ["x"]= 234, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/AtlasTrees/ExpeditionNode1.png"]= { + ["Art/2DArt/SkillIcons/passives/AtlasTrees/HarbingerNotable3.png"]= { ["x"]= 260, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/AtlasTrees/HarbingerNotable3.png"]= { + ["Art/2DArt/SkillIcons/passives/AtlasTrees/LichNode1.png"]= { ["x"]= 286, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/AtlasTrees/LichNode1.png"]= { + ["Art/2DArt/SkillIcons/passives/AtlasTrees/LyciaNode1.png"]= { ["x"]= 312, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/AtlasTrees/LyciaNode1.png"]= { + ["Art/2DArt/SkillIcons/passives/AtlasTrees/MorePrimalWispsSmall.png"]= { ["x"]= 338, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/AtlasTrees/MorePrimalWispsSmall.png"]= { + ["Art/2DArt/SkillIcons/passives/AtlasTrees/MoreVividWispsSmall.png"]= { ["x"]= 364, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/AtlasTrees/MoreVividWispsSmall.png"]= { + ["Art/2DArt/SkillIcons/passives/AtlasTrees/MoreWildWispsSmall.png"]= { ["x"]= 390, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/AtlasTrees/MoreWildWispsSmall.png"]= { + ["Art/2DArt/SkillIcons/passives/AtlasTrees/PerandusNotable2.png"]= { ["x"]= 416, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/AtlasTrees/PerandusNotable2.png"]= { + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RitualBloodlineNode.png"]= { ["x"]= 442, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/AtlasTrees/RitualBloodlineNode.png"]= { + ["Art/2DArt/SkillIcons/passives/AtlasTrees/UltimatumNode1.png"]= { ["x"]= 468, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/AtlasTrees/UltimatumNode1.png"]= { + ["Art/2DArt/SkillIcons/passives/AtlasTrees/UltimatumNotable6.png"]= { ["x"]= 494, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/AtlasTrees/UltimatumNotable6.png"]= { + ["Art/2DArt/SkillIcons/passives/AtlasTrees/UltimatumNotableMonsters1.png"]= { ["x"]= 520, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/AtlasTrees/UltimatumNotableMonsters1.png"]= { + ["Art/2DArt/SkillIcons/passives/AtlasTrees/UltimatumNotableMonsters2.png"]= { ["x"]= 546, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/AtlasTrees/UltimatumNotableMonsters2.png"]= { + ["Art/2DArt/SkillIcons/passives/AtlasTrees/UltimatumNotableStoneCircle.png"]= { ["x"]= 572, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/AtlasTrees/UltimatumNotableStoneCircle.png"]= { + ["Art/2DArt/SkillIcons/passives/AttackBlindNode.png"]= { ["x"]= 598, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/AttackBlindNode.png"]= { + ["Art/2DArt/SkillIcons/passives/AttackDamangeAndEvasionNotableNode.png"]= { ["x"]= 624, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/AttackDamangeAndEvasionNotableNode.png"]= { + ["Art/2DArt/SkillIcons/passives/AttackPoisonNode.png"]= { ["x"]= 650, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/AttackPoisonNode.png"]= { + ["Art/2DArt/SkillIcons/passives/AuraEffectNode.png"]= { ["x"]= 676, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/AuraEffectNode.png"]= { + ["Art/2DArt/SkillIcons/passives/BannerAreaNode.png"]= { ["x"]= 702, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/BannerAreaNode.png"]= { + ["Art/2DArt/SkillIcons/passives/BannerDurationNode.png"]= { ["x"]= 728, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/BannerDurationNode.png"]= { + ["Art/2DArt/SkillIcons/passives/BannerEffectNode.png"]= { ["x"]= 754, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/BannerEffectNode.png"]= { + ["Art/2DArt/SkillIcons/passives/BannerResourceAreaNode.png"]= { ["x"]= 780, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/BannerResourceAreaNode.png"]= { + ["Art/2DArt/SkillIcons/passives/BeltimberBladeNode.png"]= { ["x"]= 806, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/BeltimberBladeNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Berserker/DmgAttackSpeed.png"]= { ["x"]= 832, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Berserker/DmgAttackSpeed.png"]= { + ["Art/2DArt/SkillIcons/passives/Berserker/DmgCrit.png"]= { ["x"]= 858, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Berserker/DmgCrit.png"]= { + ["Art/2DArt/SkillIcons/passives/Berserker/DmgLeech.png"]= { ["x"]= 884, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Berserker/DmgLeech.png"]= { + ["Art/2DArt/SkillIcons/passives/Berserker/DmgWarcry.png"]= { ["x"]= 910, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Berserker/DmgWarcry.png"]= { + ["Art/2DArt/SkillIcons/passives/BleedAndPoisonMitigateNode.png"]= { ["x"]= 936, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/BleedAndPoisonMitigateNode.png"]= { + ["Art/2DArt/SkillIcons/passives/BlockAttackDmgNode.png"]= { + ["x"]= 962, + ["y"]= 26, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/BlockSpellDmgNode.png"]= { ["x"]= 0, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/BlockAttackDmgNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Blood2.png"]= { ["x"]= 26, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/BlockSpellDmgNode.png"]= { + ["Art/2DArt/SkillIcons/passives/BluntInstrument.png"]= { ["x"]= 52, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Blood2.png"]= { + ["Art/2DArt/SkillIcons/passives/BowDamage.png"]= { ["x"]= 78, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/BluntInstrument.png"]= { + ["Art/2DArt/SkillIcons/passives/Brand1.png"]= { ["x"]= 104, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/BowDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/Brand2.png"]= { ["x"]= 130, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Brand1.png"]= { + ["Art/2DArt/SkillIcons/passives/BrandDmgNode.png"]= { ["x"]= 156, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Brand2.png"]= { + ["Art/2DArt/SkillIcons/passives/BrassDomeNode.png"]= { ["x"]= 182, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/BrandDmgNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Champion/AnEAttDamage.png"]= { ["x"]= 208, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/BrassDomeNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Champion/AnEAura.png"]= { ["x"]= 234, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Champion/AnEAttDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/Champion/AnEFortify.png"]= { ["x"]= 260, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Champion/AnEAura.png"]= { + ["Art/2DArt/SkillIcons/passives/Champion/AnETaunt.png"]= { ["x"]= 286, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Champion/AnEFortify.png"]= { + ["Art/2DArt/SkillIcons/passives/Champion/ImpalePassive.png"]= { ["x"]= 312, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Champion/AnETaunt.png"]= { + ["Art/2DArt/SkillIcons/passives/ChaosDamage.png"]= { ["x"]= 338, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Champion/ImpalePassive.png"]= { + ["Art/2DArt/SkillIcons/passives/ChaosDamageOverTimeNode.png"]= { ["x"]= 364, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/ChaosDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/ChaosDamagenode.png"]= { ["x"]= 390, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/ChaosDamageOverTimeNode.png"]= { + ["Art/2DArt/SkillIcons/passives/ChaosResistNode.png"]= { ["x"]= 416, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/ChaosDamagenode.png"]= { + ["Art/2DArt/SkillIcons/passives/ChaosResistNotable.png"]= { ["x"]= 442, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/ChaosResistNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Chieftain/LifeRegenFireDamage.png"]= { ["x"]= 468, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/ChaosResistNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Chieftain/LifeRegenStrength.png"]= { ["x"]= 494, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Chieftain/LifeRegenFireDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/Chieftain/LifeRegenTotemPlacementSpeed.png"]= { ["x"]= 520, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Chieftain/LifeRegenStrength.png"]= { + ["Art/2DArt/SkillIcons/passives/ClawCritStrikeChanceNode.png"]= { ["x"]= 546, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Chieftain/LifeRegenTotemPlacementSpeed.png"]= { + ["Art/2DArt/SkillIcons/passives/ColdAndFireHybridNode.png"]= { ["x"]= 572, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/ClawCritStrikeChanceNode.png"]= { + ["Art/2DArt/SkillIcons/passives/ColdDamageOverTimeNode.png"]= { ["x"]= 598, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/ColdAndFireHybridNode.png"]= { + ["Art/2DArt/SkillIcons/passives/ColdDamagenode.png"]= { ["x"]= 624, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/ColdDamageOverTimeNode.png"]= { + ["Art/2DArt/SkillIcons/passives/ColdResistNode.png"]= { ["x"]= 650, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/ColdDamagenode.png"]= { + ["Art/2DArt/SkillIcons/passives/CooldownWarcryNode1.png"]= { ["x"]= 676, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/ColdResistNode.png"]= { + ["Art/2DArt/SkillIcons/passives/CorpseDamage.png"]= { ["x"]= 702, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/CooldownWarcryNode1.png"]= { + ["Art/2DArt/SkillIcons/passives/CorpseLife.png"]= { ["x"]= 728, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/CorpseDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/CurseAreaofEffect.png"]= { ["x"]= 754, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/CorpseLife.png"]= { + ["Art/2DArt/SkillIcons/passives/CurseCastSpeed.png"]= { ["x"]= 780, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/CurseAreaofEffect.png"]= { + ["Art/2DArt/SkillIcons/passives/CurseDuration.png"]= { ["x"]= 806, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/CurseCastSpeed.png"]= { + ["Art/2DArt/SkillIcons/passives/CurseEffectNode.png"]= { ["x"]= 832, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/CurseDuration.png"]= { + ["Art/2DArt/SkillIcons/passives/CurseManaCost.png"]= { ["x"]= 858, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/CurseEffectNode.png"]= { + ["Art/2DArt/SkillIcons/passives/CurseManaReservation.png"]= { ["x"]= 884, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/CurseManaCost.png"]= { + ["Art/2DArt/SkillIcons/passives/CursemitigationclusterNode.png"]= { ["x"]= 910, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/CurseManaReservation.png"]= { + ["Art/2DArt/SkillIcons/passives/CybilsClawNode.png"]= { ["x"]= 936, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/CursemitigationclusterNode.png"]= { + ["Art/2DArt/SkillIcons/passives/DamageOverTime.png"]= { + ["x"]= 962, + ["y"]= 52, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/DamageOverTimeNode.png"]= { ["x"]= 0, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/CybilsClawNode.png"]= { + ["Art/2DArt/SkillIcons/passives/DeadEye/ProjectileDamageAccuracy.png"]= { ["x"]= 26, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/DamageOverTime.png"]= { + ["Art/2DArt/SkillIcons/passives/DeadEye/ProjectileDamageAttackSpeed.png"]= { ["x"]= 52, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/DamageOverTimeNode.png"]= { + ["Art/2DArt/SkillIcons/passives/DivineFury.png"]= { ["x"]= 78, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/DeadEye/ProjectileDamageAccuracy.png"]= { + ["Art/2DArt/SkillIcons/passives/DivineWrath.png"]= { ["x"]= 104, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/DeadEye/ProjectileDamageAttackSpeed.png"]= { + ["Art/2DArt/SkillIcons/passives/DmgHeraldSkillsNode.png"]= { ["x"]= 130, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/DivineFury.png"]= { + ["Art/2DArt/SkillIcons/passives/DmgWhenChannelSkillsNode.png"]= { ["x"]= 156, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/DivineWrath.png"]= { + ["Art/2DArt/SkillIcons/passives/DodgeAtksNode.png"]= { ["x"]= 182, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/DmgHeraldSkillsNode.png"]= { + ["Art/2DArt/SkillIcons/passives/DualWieldNodeDefensive.png"]= { ["x"]= 208, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/DmgWhenChannelSkillsNode.png"]= { + ["Art/2DArt/SkillIcons/passives/DualWieldNodeOffensive.png"]= { ["x"]= 234, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/DodgeAtksNode.png"]= { + ["Art/2DArt/SkillIcons/passives/DurationofMinionsNode.png"]= { ["x"]= 260, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/DualWieldNodeDefensive.png"]= { + ["Art/2DArt/SkillIcons/passives/ElementalDamagenode.png"]= { ["x"]= 286, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/DualWieldNodeOffensive.png"]= { + ["Art/2DArt/SkillIcons/passives/ElementalResistance2.png"]= { ["x"]= 312, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/DurationofMinionsNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Elementalist/ElementalDamageAttackCasteSpeed.png"]= { ["x"]= 338, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/ElementalDamagenode.png"]= { + ["Art/2DArt/SkillIcons/passives/Elementalist/ElementalDamageElementalResistances.png"]= { ["x"]= 364, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/ElementalResistance2.png"]= { + ["Art/2DArt/SkillIcons/passives/Elementalist/ElementalDamageFreezeShockIgnite.png"]= { ["x"]= 390, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Elementalist/ElementalDamageAttackCasteSpeed.png"]= { + ["Art/2DArt/SkillIcons/passives/EmpoweredAttackWarcryNode1.png"]= { ["x"]= 416, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Elementalist/ElementalDamageElementalResistances.png"]= { + ["Art/2DArt/SkillIcons/passives/EnergyShieldNode.png"]= { ["x"]= 442, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Elementalist/ElementalDamageFreezeShockIgnite.png"]= { + ["Art/2DArt/SkillIcons/passives/EnergyshieldLeechPassivessmall.png"]= { ["x"]= 468, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/EmpoweredAttackWarcryNode1.png"]= { + ["Art/2DArt/SkillIcons/passives/EvasionNode.png"]= { ["x"]= 494, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/EnergyShieldNode.png"]= { + ["Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.png"]= { ["x"]= 520, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/EnergyshieldLeechPassivessmall.png"]= { + ["Art/2DArt/SkillIcons/passives/FireDamageOverTimeNode.png"]= { ["x"]= 546, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/EvasionNode.png"]= { + ["Art/2DArt/SkillIcons/passives/FireDamagenode.png"]= { ["x"]= 572, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.png"]= { + ["Art/2DArt/SkillIcons/passives/FireResistNode.png"]= { ["x"]= 598, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/FireDamageOverTimeNode.png"]= { + ["Art/2DArt/SkillIcons/passives/FlaskDurationnode.png"]= { ["x"]= 624, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/FireDamagenode.png"]= { + ["Art/2DArt/SkillIcons/passives/FortifyNode.png"]= { ["x"]= 650, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/FireResistNode.png"]= { + ["Art/2DArt/SkillIcons/passives/GenericWarcryNode1.png"]= { ["x"]= 676, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/FlaskDurationnode.png"]= { + ["Art/2DArt/SkillIcons/passives/GenericWarcryNode2.png"]= { ["x"]= 702, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/FortifyNode.png"]= { + ["Art/2DArt/SkillIcons/passives/GenericWarcryNode3.png"]= { ["x"]= 728, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/GenericWarcryNode1.png"]= { + ["Art/2DArt/SkillIcons/passives/Gladiator/GLADBlockChance.png"]= { ["x"]= 754, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/GenericWarcryNode2.png"]= { + ["Art/2DArt/SkillIcons/passives/Gladiator/GLADOneHand.png"]= { ["x"]= 780, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/GenericWarcryNode3.png"]= { + ["Art/2DArt/SkillIcons/passives/GolemsNode.png"]= { ["x"]= 806, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Gladiator/GLADBlockChance.png"]= { + ["Art/2DArt/SkillIcons/passives/GraceoftheGoddessNode.png"]= { ["x"]= 832, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Gladiator/GLADOneHand.png"]= { + ["Art/2DArt/SkillIcons/passives/GreenPhysicalDamageNode.png"]= { ["x"]= 858, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/GolemsNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Guardian/ArmourEnergyMeleeDamage.png"]= { ["x"]= 884, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/GraceoftheGoddessNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Guardian/ArmourEnergyShieldDefenseFromShields.png"]= { ["x"]= 910, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/GreenPhysicalDamageNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Guardian/ArmourEnergyShieldManaPool.png"]= { ["x"]= 936, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Guardian/ArmourEnergyMeleeDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/Guardian/ArmourEnergyShieldStaves.png"]= { + ["x"]= 962, + ["y"]= 78, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Guardian/GuardianHallowingFlameNode.png"]= { ["x"]= 0, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Guardian/ArmourEnergyShieldDefenseFromShields.png"]= { + ["Art/2DArt/SkillIcons/passives/Guardian/Minion Damage Armour and Energy Shield.png"]= { ["x"]= 26, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Guardian/ArmourEnergyShieldManaPool.png"]= { + ["Art/2DArt/SkillIcons/passives/Guardian/TimeOfNeed.png"]= { ["x"]= 52, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Guardian/ArmourEnergyShieldStaves.png"]= { + ["Art/2DArt/SkillIcons/passives/HalfColdHalfLightning.png"]= { ["x"]= 78, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Guardian/GuardianHallowingFlameNode.png"]= { + ["Art/2DArt/SkillIcons/passives/HeartbreakerNode.png"]= { ["x"]= 104, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Guardian/Minion Damage Armour and Energy Shield.png"]= { + ["Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.png"]= { ["x"]= 130, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Guardian/TimeOfNeed.png"]= { + ["Art/2DArt/SkillIcons/passives/HeraldDamageNotable.png"]= { ["x"]= 156, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/HalfColdHalfLightning.png"]= { + ["Art/2DArt/SkillIcons/passives/HeraldReservationNode.png"]= { ["x"]= 182, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/HeartbreakerNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Hierophant/ManaRegen.png"]= { ["x"]= 208, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.png"]= { + ["Art/2DArt/SkillIcons/passives/IgniteBleedNode.png"]= { ["x"]= 234, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/HeraldDamageNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/ImapleNode.png"]= { ["x"]= 260, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/HeraldReservationNode.png"]= { + ["Art/2DArt/SkillIcons/passives/ImpaleNode2.png"]= { ["x"]= 286, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Hierophant/ManaRegen.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreaseCritChanceNode.png"]= { ["x"]= 312, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/IgniteBleedNode.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreaseMinionLifeNode.png"]= { ["x"]= 338, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/ImapleNode.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreasedAttackDamageNode.png"]= { ["x"]= 364, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/ImpaleNode2.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreasedManaCostNode.png"]= { ["x"]= 390, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/IncreaseCritChanceNode.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreasedMaximumLifeNode.png"]= { ["x"]= 416, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/IncreaseMinionLifeNode.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreasedMinionDamageNode.png"]= { ["x"]= 442, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/IncreasedAttackDamageNode.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreasedNonDamageAilmentNode.png"]= { ["x"]= 468, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/IncreasedManaCostNode.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreasedProjectileSpeedNode.png"]= { ["x"]= 494, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/IncreasedMaximumLifeNode.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreasedSpellDamageNode.png"]= { ["x"]= 520, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/IncreasedMinionDamageNode.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreasedWarcryNode.png"]= { ["x"]= 546, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/IncreasedNonDamageAilmentNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageAttackCasteSpeed.png"]= { ["x"]= 572, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/IncreasedProjectileSpeedNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageAvoidElementalStatusEffects.png"]= { ["x"]= 598, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/IncreasedSpellDamageNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageCasteSpeed.png"]= { ["x"]= 624, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/IncreasedWarcryNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageElementalPenetration.png"]= { ["x"]= 650, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageAttackCasteSpeed.png"]= { + ["Art/2DArt/SkillIcons/passives/JacktheaxeNode.png"]= { ["x"]= 676, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageAvoidElementalStatusEffects.png"]= { + ["Art/2DArt/SkillIcons/passives/Juggernaut/IncreasedArmourAttackDamage.png"]= { ["x"]= 702, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageCasteSpeed.png"]= { + ["Art/2DArt/SkillIcons/passives/Juggernaut/IncreasedArmourAttackSpeed.png"]= { ["x"]= 728, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageElementalPenetration.png"]= { + ["Art/2DArt/SkillIcons/passives/Juggernaut/IncreasedArmourLifeRegeneration.png"]= { ["x"]= 754, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/JacktheaxeNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Juggernaut/IncreasedArmourMovementSpeed.png"]= { ["x"]= 780, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Juggernaut/IncreasedArmourAttackDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/Juggernaut/IncreasedArmourStunDuration.png"]= { ["x"]= 806, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Juggernaut/IncreasedArmourAttackSpeed.png"]= { + ["Art/2DArt/SkillIcons/passives/Juggernaut/JuggernautArmourNotable.png"]= { ["x"]= 832, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Juggernaut/IncreasedArmourLifeRegeneration.png"]= { + ["Art/2DArt/SkillIcons/passives/KeystoneArmourMaster.png"]= { ["x"]= 858, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Juggernaut/IncreasedArmourMovementSpeed.png"]= { + ["Art/2DArt/SkillIcons/passives/KiloavaShieldNode.png"]= { ["x"]= 884, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Juggernaut/IncreasedArmourStunDuration.png"]= { + ["Art/2DArt/SkillIcons/passives/KitavasHungerNode.png"]= { ["x"]= 910, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Juggernaut/JuggernautArmourNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/LifeAndEnergyShield.png"]= { ["x"]= 936, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/KeystoneArmourMaster.png"]= { + ["Art/2DArt/SkillIcons/passives/LifeAndReducedManaCost.png"]= { + ["x"]= 962, + ["y"]= 104, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/LifeManaFlasksrecoverynode.png"]= { ["x"]= 0, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/KiloavaShieldNode.png"]= { + ["Art/2DArt/SkillIcons/passives/LifeRecoupNode.png"]= { ["x"]= 26, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/KitavasHungerNode.png"]= { + ["Art/2DArt/SkillIcons/passives/LifeandCurses.png"]= { ["x"]= 52, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/LifeAndEnergyShield.png"]= { + ["Art/2DArt/SkillIcons/passives/LifeandMana.png"]= { ["x"]= 78, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/LifeAndReducedManaCost.png"]= { + ["Art/2DArt/SkillIcons/passives/LightningDamagenode.png"]= { ["x"]= 104, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/LifeManaFlasksrecoverynode.png"]= { + ["Art/2DArt/SkillIcons/passives/LightningResistNode.png"]= { ["x"]= 130, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/LifeRecoupNode.png"]= { + ["Art/2DArt/SkillIcons/passives/MaataSceptreNode.png"]= { ["x"]= 156, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/LifeandCurses.png"]= { + ["Art/2DArt/SkillIcons/passives/MaceElemental.png"]= { ["x"]= 182, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/LifeandMana.png"]= { + ["Art/2DArt/SkillIcons/passives/ManaAndEnergyShield.png"]= { ["x"]= 208, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/LightningDamagenode.png"]= { + ["Art/2DArt/SkillIcons/passives/ManaLeechThemedNode.png"]= { ["x"]= 234, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/LightningResistNode.png"]= { + ["Art/2DArt/SkillIcons/passives/ManaandCurses2.png"]= { ["x"]= 260, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/MaataSceptreNode.png"]= { + ["Art/2DArt/SkillIcons/passives/MarkNode.png"]= { ["x"]= 286, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/MaceElemental.png"]= { + ["Art/2DArt/SkillIcons/passives/MasteryBlank.png"]= { ["x"]= 312, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/ManaAndEnergyShield.png"]= { + ["Art/2DArt/SkillIcons/passives/MawOfConquestNode.png"]= { ["x"]= 338, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/ManaLeechThemedNode.png"]= { + ["Art/2DArt/SkillIcons/passives/MaxManaNode.png"]= { ["x"]= 364, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/ManaandCurses2.png"]= { + ["Art/2DArt/SkillIcons/passives/MeleeAoENode.png"]= { ["x"]= 390, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/MarkNode.png"]= { + ["Art/2DArt/SkillIcons/passives/MeleeCriticalStrikeChanceNode.png"]= { ["x"]= 416, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/MasteryBlank.png"]= { + ["Art/2DArt/SkillIcons/passives/MeleeCriticalStrikeMultiplierNode.png"]= { ["x"]= 442, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/MawOfConquestNode.png"]= { + ["Art/2DArt/SkillIcons/passives/MeleeFireNode.png"]= { ["x"]= 468, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/MaxManaNode.png"]= { + ["Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.png"]= { ["x"]= 494, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/MeleeAoENode.png"]= { + ["Art/2DArt/SkillIcons/passives/MineManaReservationNode.png"]= { ["x"]= 520, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/MeleeCriticalStrikeChanceNode.png"]= { + ["Art/2DArt/SkillIcons/passives/MinionAccuracyDamage.png"]= { ["x"]= 546, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/MeleeCriticalStrikeMultiplierNode.png"]= { + ["Art/2DArt/SkillIcons/passives/MinionChaosResistanceNode.png"]= { ["x"]= 572, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/MeleeFireNode.png"]= { + ["Art/2DArt/SkillIcons/passives/MinionDmgHeraldSkillsNode.png"]= { ["x"]= 598, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.png"]= { + ["Art/2DArt/SkillIcons/passives/MinionElementalResistancesNode.png"]= { ["x"]= 624, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/MineManaReservationNode.png"]= { + ["Art/2DArt/SkillIcons/passives/MovementSpeedandEvasionPassive.png"]= { ["x"]= 650, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/MinionAccuracyDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/MysticRefractorNode.png"]= { ["x"]= 676, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/MinionChaosResistanceNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Necromancer/CorpseConsumptionNode.png"]= { ["x"]= 702, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/MinionDmgHeraldSkillsNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Necromancer/IncreasedMinionDamageIncreasedMinionLife.png"]= { ["x"]= 728, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/MinionElementalResistancesNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Necromancer/IncreasedMinionDamageIncreasedSkillDuration.png"]= { ["x"]= 754, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/MovementSpeedandEvasionPassive.png"]= { + ["Art/2DArt/SkillIcons/passives/Necromancer/ManaNode.png"]= { ["x"]= 780, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/MysticRefractorNode.png"]= { + ["Art/2DArt/SkillIcons/passives/NodeAxeandSwordDamage.png"]= { ["x"]= 806, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Necromancer/CorpseConsumptionNode.png"]= { + ["Art/2DArt/SkillIcons/passives/NodeBowDamage.png"]= { ["x"]= 832, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Necromancer/IncreasedMinionDamageIncreasedMinionLife.png"]= { + ["Art/2DArt/SkillIcons/passives/NodeDaggerandClawDamage.png"]= { ["x"]= 858, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Necromancer/IncreasedMinionDamageIncreasedSkillDuration.png"]= { + ["Art/2DArt/SkillIcons/passives/NodeDualWieldingDamage.png"]= { ["x"]= 884, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Necromancer/ManaNode.png"]= { + ["Art/2DArt/SkillIcons/passives/NodeHoldingShieldDamage.png"]= { ["x"]= 910, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/NodeAxeandSwordDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/NodeMaceandStaffDamage.png"]= { ["x"]= 936, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/NodeBowDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/NodeTwoHandedMeleeDamage.png"]= { + ["x"]= 962, + ["y"]= 130, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/NodeWandDamage.png"]= { ["x"]= 0, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/NodeDaggerandClawDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/Occultist/EnergyShieldChaos.png"]= { ["x"]= 26, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/NodeDualWieldingDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/Occultist/EnergyShieldCold.png"]= { ["x"]= 52, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/NodeHoldingShieldDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/Occultist/IncreasedEnergyShieldAttackAndCastSpeed.png"]= { ["x"]= 78, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/NodeMaceandStaffDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/Occultist/IncreasedEnergyShieldCriticalStrikeChance.png"]= { ["x"]= 104, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/NodeTwoHandedMeleeDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/Occultist/IncreasedEnergyShieldManaReservation.png"]= { ["x"]= 130, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/NodeWandDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/Occultist/IncreasedEnergyShieldMaximumMana.png"]= { ["x"]= 156, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Occultist/EnergyShieldChaos.png"]= { + ["Art/2DArt/SkillIcons/passives/OneHandedPhysicalAndLeechNode.png"]= { ["x"]= 182, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Occultist/EnergyShieldCold.png"]= { + ["Art/2DArt/SkillIcons/passives/OneHandedPhysicalAndLeechNotable.png"]= { ["x"]= 208, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Occultist/IncreasedEnergyShieldAttackAndCastSpeed.png"]= { + ["Art/2DArt/SkillIcons/passives/PathFinder/FlaskEffectDamageOverTime.png"]= { ["x"]= 234, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Occultist/IncreasedEnergyShieldCriticalStrikeChance.png"]= { + ["Art/2DArt/SkillIcons/passives/PathFinder/FlaskEffectElementalResistance.png"]= { ["x"]= 260, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Occultist/IncreasedEnergyShieldManaReservation.png"]= { + ["Art/2DArt/SkillIcons/passives/PathFinder/FlaskEffectFlaskDuration.png"]= { ["x"]= 286, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Occultist/IncreasedEnergyShieldMaximumMana.png"]= { + ["Art/2DArt/SkillIcons/passives/PhysicalDamageNode.png"]= { ["x"]= 312, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/OneHandedPhysicalAndLeechNode.png"]= { + ["Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.png"]= { ["x"]= 338, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/OneHandedPhysicalAndLeechNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimenode3.png"]= { ["x"]= 364, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/PathFinder/FlaskEffectDamageOverTime.png"]= { + ["Art/2DArt/SkillIcons/passives/PhysicalDamagenode2.png"]= { ["x"]= 390, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/PathFinder/FlaskEffectElementalResistance.png"]= { + ["Art/2DArt/SkillIcons/passives/PhysicalandChaosDamage.png"]= { ["x"]= 416, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/PathFinder/FlaskEffectFlaskDuration.png"]= { + ["Art/2DArt/SkillIcons/passives/Poison.png"]= { ["x"]= 442, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/PhysicalDamageNode.png"]= { + ["Art/2DArt/SkillIcons/passives/PoisonSpellsNode.png"]= { ["x"]= 468, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Primalist/PrimalistNode.png"]= { ["x"]= 494, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimenode3.png"]= { + ["Art/2DArt/SkillIcons/passives/PrimordialCaneNode.png"]= { ["x"]= 520, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/PhysicalDamagenode2.png"]= { + ["Art/2DArt/SkillIcons/passives/ProjectileDmgNode.png"]= { ["x"]= 546, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/PhysicalandChaosDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/ProjectilesNode.png"]= { ["x"]= 572, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Poison.png"]= { + ["Art/2DArt/SkillIcons/passives/ProjectilesNode2.png"]= { ["x"]= 598, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/PoisonSpellsNode.png"]= { + ["Art/2DArt/SkillIcons/passives/ProsperosProtectionNode.png"]= { ["x"]= 624, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Primalist/PrimalistNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Rage.png"]= { ["x"]= 650, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/PrimordialCaneNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Raider/IncreasedElementalDamage.png"]= { ["x"]= 676, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/ProjectileDmgNode.png"]= { + ["Art/2DArt/SkillIcons/passives/RangedTotemAttackSpeed.png"]= { ["x"]= 702, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/ProjectilesNode.png"]= { + ["Art/2DArt/SkillIcons/passives/RangedTotemDamage.png"]= { ["x"]= 728, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/ProjectilesNode2.png"]= { + ["Art/2DArt/SkillIcons/passives/RedAttackSmallPassive.png"]= { ["x"]= 754, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/ProsperosProtectionNode.png"]= { + ["Art/2DArt/SkillIcons/passives/ReducedManaCostNode.png"]= { ["x"]= 780, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Rage.png"]= { + ["Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.png"]= { ["x"]= 806, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Raider/IncreasedElementalDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/RetaliationNode1.png"]= { ["x"]= 832, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/RangedTotemAttackSpeed.png"]= { + ["Art/2DArt/SkillIcons/passives/RetaliationNode2.png"]= { ["x"]= 858, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/RangedTotemDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/RetaliationNode3.png"]= { ["x"]= 884, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/RedAttackSmallPassive.png"]= { + ["Art/2DArt/SkillIcons/passives/RetaliationNode4.png"]= { ["x"]= 910, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/ReducedManaCostNode.png"]= { + ["Art/2DArt/SkillIcons/passives/RetaliationNode5.png"]= { ["x"]= 936, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Saboteur/ElementalDamageElementalResistance.png"]= { + ["x"]= 962, + ["y"]= 156, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Saboteur/ElementalDamageMines.png"]= { ["x"]= 0, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/RetaliationNode1.png"]= { + ["Art/2DArt/SkillIcons/passives/Saboteur/ElementalDamageMovementSpeed.png"]= { ["x"]= 26, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/RetaliationNode2.png"]= { + ["Art/2DArt/SkillIcons/passives/SareshBloodlineNode.png"]= { ["x"]= 52, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/RetaliationNode3.png"]= { + ["Art/2DArt/SkillIcons/passives/SharpandBrittle.png"]= { ["x"]= 78, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/RetaliationNode4.png"]= { + ["Art/2DArt/SkillIcons/passives/ShieldAttackDamage.png"]= { ["x"]= 104, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/RetaliationNode5.png"]= { + ["Art/2DArt/SkillIcons/passives/ShieldNodeOffensive.png"]= { ["x"]= 130, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Saboteur/ElementalDamageElementalResistance.png"]= { + ["Art/2DArt/SkillIcons/passives/Slayer/2HdmgAOE.png"]= { ["x"]= 156, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Saboteur/ElementalDamageMines.png"]= { + ["Art/2DArt/SkillIcons/passives/Slayer/2HdmgCritStrikeMultiplier.png"]= { ["x"]= 182, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Saboteur/ElementalDamageMovementSpeed.png"]= { + ["Art/2DArt/SkillIcons/passives/Slayer/2HdmgFrenzyEnduranceCharge.png"]= { ["x"]= 208, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/SareshBloodlineNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Slayer/2HdmgLeech.png"]= { ["x"]= 234, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/SharpandBrittle.png"]= { + ["Art/2DArt/SkillIcons/passives/Slayer/2HdmgSpeed.png"]= { ["x"]= 260, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/ShieldAttackDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/SpeedWarcryNode1.png"]= { ["x"]= 286, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/ShieldNodeOffensive.png"]= { + ["Art/2DArt/SkillIcons/passives/SpellMultiplyer2.png"]= { ["x"]= 312, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Slayer/2HdmgAOE.png"]= { + ["Art/2DArt/SkillIcons/passives/SpellSuppresionNode.png"]= { ["x"]= 338, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Slayer/2HdmgCritStrikeMultiplier.png"]= { + ["Art/2DArt/SkillIcons/passives/SpellSuppressionEnergyShield.png"]= { ["x"]= 364, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Slayer/2HdmgFrenzyEnduranceCharge.png"]= { + ["Art/2DArt/SkillIcons/passives/SpellSuppressionLifeFlasks.png"]= { ["x"]= 390, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Slayer/2HdmgLeech.png"]= { + ["Art/2DArt/SkillIcons/passives/StaffNodeDefensive.png"]= { ["x"]= 416, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Slayer/2HdmgSpeed.png"]= { + ["Art/2DArt/SkillIcons/passives/StaffNodeOffensive.png"]= { ["x"]= 442, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/SpeedWarcryNode1.png"]= { + ["Art/2DArt/SkillIcons/passives/StanceSmallPassive.png"]= { ["x"]= 468, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/SpellMultiplyer2.png"]= { + ["Art/2DArt/SkillIcons/passives/StancesNode.png"]= { ["x"]= 494, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/SpellSuppresionNode.png"]= { + ["Art/2DArt/SkillIcons/passives/StrikeRangeNode.png"]= { ["x"]= 520, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/SpellSuppressionEnergyShield.png"]= { + ["Art/2DArt/SkillIcons/passives/TearOfPurityNode.png"]= { ["x"]= 546, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/SpellSuppressionLifeFlasks.png"]= { + ["Art/2DArt/SkillIcons/passives/TerminusEstNode.png"]= { ["x"]= 572, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/StaffNodeDefensive.png"]= { + ["Art/2DArt/SkillIcons/passives/TheBurdenOfTruthNode.png"]= { ["x"]= 598, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/StaffNodeOffensive.png"]= { + ["Art/2DArt/SkillIcons/passives/TheBurdenofShadowsNode.png"]= { ["x"]= 624, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/StanceSmallPassive.png"]= { + ["Art/2DArt/SkillIcons/passives/TinctureFlaskNode1.png"]= { ["x"]= 650, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/StancesNode.png"]= { + ["Art/2DArt/SkillIcons/passives/TinctureNode1.png"]= { ["x"]= 676, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/StrikeRangeNode.png"]= { + ["Art/2DArt/SkillIcons/passives/TinctureNode2.png"]= { ["x"]= 702, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/TearOfPurityNode.png"]= { + ["Art/2DArt/SkillIcons/passives/TinctureNode3.png"]= { ["x"]= 728, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/TerminusEstNode.png"]= { + ["Art/2DArt/SkillIcons/passives/TotemDmgNode.png"]= { ["x"]= 754, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/TheBurdenOfTruthNode.png"]= { + ["Art/2DArt/SkillIcons/passives/TrapAndMineDmgNode.png"]= { ["x"]= 780, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/TheBurdenofShadowsNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Trickster/DefensiveNodeTrickster.png"]= { ["x"]= 806, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/TinctureFlaskNode1.png"]= { + ["Art/2DArt/SkillIcons/passives/Trickster/OffensiveNodeTrickster.png"]= { ["x"]= 832, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/TinctureNode1.png"]= { + ["Art/2DArt/SkillIcons/passives/VersusoBootsNode.png"]= { ["x"]= 858, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/TinctureNode2.png"]= { + ["Art/2DArt/SkillIcons/passives/VictariosJacketNode.png"]= { ["x"]= 884, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/TinctureNode3.png"]= { + ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanCurses2.png"]= { ["x"]= 910, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/TotemDmgNode.png"]= { + ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanNode.png"]= { ["x"]= 936, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/TrapAndMineDmgNode.png"]= { + ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanSpecialCurse1.png"]= { + ["x"]= 962, + ["y"]= 182, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanSpecialCurse2.png"]= { ["x"]= 0, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Trickster/DefensiveNodeTrickster.png"]= { + ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanSpecialCurse3.png"]= { ["x"]= 26, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Trickster/OffensiveNodeTrickster.png"]= { + ["Art/2DArt/SkillIcons/passives/WandCritical.png"]= { ["x"]= 52, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/VersusoBootsNode.png"]= { + ["Art/2DArt/SkillIcons/passives/WandSpeedAccuracyNode.png"]= { ["x"]= 78, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/VictariosJacketNode.png"]= { + ["Art/2DArt/SkillIcons/passives/WarCryCooldown.png"]= { ["x"]= 104, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanCurses2.png"]= { + ["Art/2DArt/SkillIcons/passives/WarcryBuffEffectNotable.png"]= { ["x"]= 130, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Warden/SpellSuppressionEvasion.png"]= { ["x"]= 156, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanSpecialCurse1.png"]= { + ["Art/2DArt/SkillIcons/passives/Warden/TincturesNode.png"]= { ["x"]= 182, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanSpecialCurse2.png"]= { + ["Art/2DArt/SkillIcons/passives/Warden/WardenNode.png"]= { ["x"]= 208, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanSpecialCurse3.png"]= { + ["Art/2DArt/SkillIcons/passives/Warden/WardenTracking.png"]= { ["x"]= 234, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/WandCritical.png"]= { + ["Art/2DArt/SkillIcons/passives/WarpedTimepieceNode.png"]= { ["x"]= 260, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/WandSpeedAccuracyNode.png"]= { + ["Art/2DArt/SkillIcons/passives/WidowhailBowNode.png"]= { ["x"]= 286, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/WarCryCooldown.png"]= { + ["Art/2DArt/SkillIcons/passives/accuracy.png"]= { ["x"]= 312, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/WarcryBuffEffectNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/accuracy2h.png"]= { ["x"]= 338, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Warden/SpellSuppressionEvasion.png"]= { + ["Art/2DArt/SkillIcons/passives/accuracydex.png"]= { ["x"]= 364, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Warden/TincturesNode.png"]= { + ["Art/2DArt/SkillIcons/passives/accuracysword.png"]= { ["x"]= 390, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Warden/WardenNode.png"]= { + ["Art/2DArt/SkillIcons/passives/arcaneradience.png"]= { ["x"]= 416, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Warden/WardenTracking.png"]= { + ["Art/2DArt/SkillIcons/passives/areaofeffect.png"]= { ["x"]= 442, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/WarpedTimepieceNode.png"]= { + ["Art/2DArt/SkillIcons/passives/attackspeed.png"]= { ["x"]= 468, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/WidowhailBowNode.png"]= { + ["Art/2DArt/SkillIcons/passives/attackspeed2h.png"]= { ["x"]= 494, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/accuracy.png"]= { + ["Art/2DArt/SkillIcons/passives/attackspeedaxe.png"]= { ["x"]= 520, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/accuracy2h.png"]= { + ["Art/2DArt/SkillIcons/passives/attackspeedbow.png"]= { ["x"]= 546, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/accuracydex.png"]= { + ["Art/2DArt/SkillIcons/passives/attackspeedclaw.png"]= { ["x"]= 572, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/accuracysword.png"]= { + ["Art/2DArt/SkillIcons/passives/attackspeeddagger.png"]= { ["x"]= 598, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/arcaneradience.png"]= { + ["Art/2DArt/SkillIcons/passives/attackspeeddual.png"]= { ["x"]= 624, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/areaofeffect.png"]= { + ["Art/2DArt/SkillIcons/passives/attackspeedmace.png"]= { ["x"]= 650, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/attackspeed.png"]= { + ["Art/2DArt/SkillIcons/passives/attackspeedsworddex.png"]= { ["x"]= 676, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/attackspeed2h.png"]= { + ["Art/2DArt/SkillIcons/passives/auraareaofeffect.png"]= { ["x"]= 702, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/attackspeedaxe.png"]= { + ["Art/2DArt/SkillIcons/passives/auraeffect.png"]= { ["x"]= 728, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/attackspeedbow.png"]= { + ["Art/2DArt/SkillIcons/passives/avoidburning.png"]= { ["x"]= 754, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/attackspeedclaw.png"]= { + ["Art/2DArt/SkillIcons/passives/avoidchilling.png"]= { ["x"]= 780, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/attackspeeddagger.png"]= { + ["Art/2DArt/SkillIcons/passives/axedmgspeed.png"]= { ["x"]= 806, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/attackspeeddual.png"]= { + ["Art/2DArt/SkillIcons/passives/blankDex.png"]= { ["x"]= 832, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/attackspeedmace.png"]= { + ["Art/2DArt/SkillIcons/passives/blankInt.png"]= { ["x"]= 858, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/attackspeedsworddex.png"]= { + ["Art/2DArt/SkillIcons/passives/blankStr.png"]= { ["x"]= 884, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/auraareaofeffect.png"]= { + ["Art/2DArt/SkillIcons/passives/blastradius.png"]= { ["x"]= 910, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/auraeffect.png"]= { + ["Art/2DArt/SkillIcons/passives/blockstaff.png"]= { ["x"]= 936, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/avoidburning.png"]= { + ["Art/2DArt/SkillIcons/passives/blockstr.png"]= { + ["x"]= 962, + ["y"]= 208, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/castavoidinterruption.png"]= { ["x"]= 0, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/avoidchilling.png"]= { + ["Art/2DArt/SkillIcons/passives/castspeed.png"]= { ["x"]= 26, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/axedmgspeed.png"]= { + ["Art/2DArt/SkillIcons/passives/chargedex.png"]= { ["x"]= 52, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/blankDex.png"]= { + ["Art/2DArt/SkillIcons/passives/chargeint.png"]= { ["x"]= 78, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/blankInt.png"]= { + ["Art/2DArt/SkillIcons/passives/chargestr.png"]= { ["x"]= 104, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/blankStr.png"]= { + ["Art/2DArt/SkillIcons/passives/clawmasterydex.png"]= { ["x"]= 130, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/blastradius.png"]= { + ["Art/2DArt/SkillIcons/passives/clustersLinknode1.png"]= { ["x"]= 156, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/blockstaff.png"]= { + ["Art/2DArt/SkillIcons/passives/clustersLinknode2.png"]= { ["x"]= 182, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/blockstr.png"]= { + ["Art/2DArt/SkillIcons/passives/colddamage.png"]= { ["x"]= 208, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/castavoidinterruption.png"]= { + ["Art/2DArt/SkillIcons/passives/coldresist.png"]= { ["x"]= 234, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/castspeed.png"]= { + ["Art/2DArt/SkillIcons/passives/criticalbow.png"]= { ["x"]= 260, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/chargedex.png"]= { + ["Art/2DArt/SkillIcons/passives/criticalclaw.png"]= { ["x"]= 286, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/chargeint.png"]= { + ["Art/2DArt/SkillIcons/passives/criticaldaggerdex.png"]= { ["x"]= 312, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/chargestr.png"]= { + ["Art/2DArt/SkillIcons/passives/criticaldaggerint.png"]= { ["x"]= 338, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/clawmasterydex.png"]= { + ["Art/2DArt/SkillIcons/passives/criticalstrikechance.png"]= { ["x"]= 364, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/clustersLinknode1.png"]= { + ["Art/2DArt/SkillIcons/passives/criticalstrikechance2.png"]= { ["x"]= 390, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/clustersLinknode2.png"]= { + ["Art/2DArt/SkillIcons/passives/criticalstrikemultiplier.png"]= { ["x"]= 416, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/colddamage.png"]= { + ["Art/2DArt/SkillIcons/passives/criticalstrikemultiplier2.png"]= { ["x"]= 442, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/coldresist.png"]= { + ["Art/2DArt/SkillIcons/passives/critstrchnc.png"]= { ["x"]= 468, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/criticalbow.png"]= { + ["Art/2DArt/SkillIcons/passives/crystalskin.png"]= { ["x"]= 494, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/criticalclaw.png"]= { + ["Art/2DArt/SkillIcons/passives/damage.png"]= { ["x"]= 520, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/criticaldaggerdex.png"]= { + ["Art/2DArt/SkillIcons/passives/damage_blue.png"]= { ["x"]= 546, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/criticaldaggerint.png"]= { + ["Art/2DArt/SkillIcons/passives/damageaxe.png"]= { ["x"]= 572, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/criticalstrikechance.png"]= { + ["Art/2DArt/SkillIcons/passives/damagedualwield.png"]= { ["x"]= 598, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/criticalstrikechance2.png"]= { + ["Art/2DArt/SkillIcons/passives/damagedualwieldgreen.png"]= { ["x"]= 624, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/criticalstrikemultiplier.png"]= { + ["Art/2DArt/SkillIcons/passives/damagemelee.png"]= { ["x"]= 650, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/criticalstrikemultiplier2.png"]= { + ["Art/2DArt/SkillIcons/passives/damagespells.png"]= { ["x"]= 676, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/critstrchnc.png"]= { + ["Art/2DArt/SkillIcons/passives/damagestaff.png"]= { ["x"]= 702, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/crystalskin.png"]= { + ["Art/2DArt/SkillIcons/passives/damagesword.png"]= { ["x"]= 728, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/damage.png"]= { + ["Art/2DArt/SkillIcons/passives/dmgreduction.png"]= { ["x"]= 754, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/damage_blue.png"]= { + ["Art/2DArt/SkillIcons/passives/dualwieldaccuracy.png"]= { ["x"]= 780, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/damageaxe.png"]= { + ["Art/2DArt/SkillIcons/passives/dualwieldblock.png"]= { ["x"]= 806, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/damagedualwield.png"]= { + ["Art/2DArt/SkillIcons/passives/elementaldamage.png"]= { ["x"]= 832, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/damagedualwieldgreen.png"]= { + ["Art/2DArt/SkillIcons/passives/energyshield.png"]= { ["x"]= 858, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/damagemelee.png"]= { + ["Art/2DArt/SkillIcons/passives/evade.png"]= { ["x"]= 884, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/damagespells.png"]= { + ["Art/2DArt/SkillIcons/passives/evadepercentage.png"]= { ["x"]= 910, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/damagestaff.png"]= { + ["Art/2DArt/SkillIcons/passives/evasion.png"]= { ["x"]= 936, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/damagesword.png"]= { + ["Art/2DArt/SkillIcons/passives/firedamage.png"]= { + ["x"]= 962, + ["y"]= 234, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/firedamageint.png"]= { ["x"]= 0, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/dmgreduction.png"]= { + ["Art/2DArt/SkillIcons/passives/firedamagestr.png"]= { ["x"]= 26, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/dualwieldaccuracy.png"]= { + ["Art/2DArt/SkillIcons/passives/fireresist.png"]= { ["x"]= 52, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/dualwieldblock.png"]= { + ["Art/2DArt/SkillIcons/passives/flaskdex.png"]= { ["x"]= 78, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/elementaldamage.png"]= { + ["Art/2DArt/SkillIcons/passives/flaskint.png"]= { ["x"]= 104, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/energyshield.png"]= { + ["Art/2DArt/SkillIcons/passives/flaskstr.png"]= { ["x"]= 130, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/evade.png"]= { + ["Art/2DArt/SkillIcons/passives/increased armor.png"]= { ["x"]= 156, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/evadepercentage.png"]= { + ["Art/2DArt/SkillIcons/passives/increasedarmorandlife.png"]= { ["x"]= 182, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/evasion.png"]= { + ["Art/2DArt/SkillIcons/passives/increasedrunspeeddex.png"]= { ["x"]= 208, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/firedamage.png"]= { + ["Art/2DArt/SkillIcons/passives/innerforce.png"]= { ["x"]= 234, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/firedamageint.png"]= { + ["Art/2DArt/SkillIcons/passives/knockback.png"]= { ["x"]= 260, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/firedamagestr.png"]= { + ["Art/2DArt/SkillIcons/passives/life1.png"]= { ["x"]= 286, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/fireresist.png"]= { + ["Art/2DArt/SkillIcons/passives/lifegainpertarget.png"]= { ["x"]= 312, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/flaskdex.png"]= { + ["Art/2DArt/SkillIcons/passives/lifeleech.png"]= { ["x"]= 338, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/flaskint.png"]= { + ["Art/2DArt/SkillIcons/passives/lifemana.png"]= { ["x"]= 364, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/flaskstr.png"]= { + ["Art/2DArt/SkillIcons/passives/lifepercentage.png"]= { ["x"]= 390, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/increased armor.png"]= { + ["Art/2DArt/SkillIcons/passives/lightningdex.png"]= { ["x"]= 416, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/increasedarmorandlife.png"]= { + ["Art/2DArt/SkillIcons/passives/lightningint.png"]= { ["x"]= 442, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/increasedrunspeeddex.png"]= { + ["Art/2DArt/SkillIcons/passives/lightningstr.png"]= { ["x"]= 468, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/innerforce.png"]= { + ["Art/2DArt/SkillIcons/passives/macecritdmgspeed.png"]= { ["x"]= 494, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/knockback.png"]= { + ["Art/2DArt/SkillIcons/passives/macedmg.png"]= { ["x"]= 520, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/life1.png"]= { + ["Art/2DArt/SkillIcons/passives/mana.png"]= { ["x"]= 546, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/lifegainpertarget.png"]= { + ["Art/2DArt/SkillIcons/passives/manaregeneration.png"]= { ["x"]= 572, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/lifeleech.png"]= { + ["Art/2DArt/SkillIcons/passives/manareservationreduction.png"]= { ["x"]= 598, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/lifemana.png"]= { + ["Art/2DArt/SkillIcons/passives/manastr.png"]= { ["x"]= 624, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/lifepercentage.png"]= { + ["Art/2DArt/SkillIcons/passives/masterydaggerdex.png"]= { ["x"]= 650, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/lightningdex.png"]= { + ["Art/2DArt/SkillIcons/passives/masterysword.png"]= { ["x"]= 676, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/lightningint.png"]= { + ["Art/2DArt/SkillIcons/passives/masterywand.png"]= { ["x"]= 702, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/lightningstr.png"]= { + ["Art/2DArt/SkillIcons/passives/meleeattackspeed.png"]= { ["x"]= 728, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/macecritdmgspeed.png"]= { + ["Art/2DArt/SkillIcons/passives/minionattackspeed.png"]= { ["x"]= 754, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/macedmg.png"]= { + ["Art/2DArt/SkillIcons/passives/minionblockchance.png"]= { ["x"]= 780, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/mana.png"]= { + ["Art/2DArt/SkillIcons/passives/miniondamage.png"]= { ["x"]= 806, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/manaregeneration.png"]= { + ["Art/2DArt/SkillIcons/passives/miniondamageBlue.png"]= { ["x"]= 832, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/manareservationreduction.png"]= { + ["Art/2DArt/SkillIcons/passives/minionlife.png"]= { ["x"]= 858, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/manastr.png"]= { + ["Art/2DArt/SkillIcons/passives/onehanddamage.png"]= { ["x"]= 884, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/masterydaggerdex.png"]= { + ["Art/2DArt/SkillIcons/passives/onehandspeed.png"]= { ["x"]= 910, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/masterysword.png"]= { + ["Art/2DArt/SkillIcons/passives/plusdexterity.png"]= { ["x"]= 936, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/masterywand.png"]= { + ["Art/2DArt/SkillIcons/passives/plusintelligence.png"]= { + ["x"]= 962, + ["y"]= 260, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/plusintelligencedexterity.png"]= { ["x"]= 0, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/meleeattackspeed.png"]= { + ["Art/2DArt/SkillIcons/passives/plusstrength.png"]= { ["x"]= 26, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/minionattackspeed.png"]= { + ["Art/2DArt/SkillIcons/passives/plusstrengthdexterity.png"]= { ["x"]= 52, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/minionblockchance.png"]= { + ["Art/2DArt/SkillIcons/passives/plusstrengthintelligence.png"]= { ["x"]= 78, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/miniondamage.png"]= { + ["Art/2DArt/SkillIcons/passives/projectilespeed.png"]= { ["x"]= 104, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/miniondamageBlue.png"]= { + ["Art/2DArt/SkillIcons/passives/shieldblock.png"]= { ["x"]= 130, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/minionlife.png"]= { + ["Art/2DArt/SkillIcons/passives/skillduration.png"]= { ["x"]= 156, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/onehanddamage.png"]= { + ["Art/2DArt/SkillIcons/passives/spellcritical.png"]= { ["x"]= 182, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/onehandspeed.png"]= { + ["Art/2DArt/SkillIcons/passives/staffaccuracy.png"]= { ["x"]= 208, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/plusdexterity.png"]= { + ["Art/2DArt/SkillIcons/passives/staffspeed.png"]= { ["x"]= 234, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/plusintelligence.png"]= { + ["Art/2DArt/SkillIcons/passives/stundex.png"]= { ["x"]= 260, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/plusintelligencedexterity.png"]= { + ["Art/2DArt/SkillIcons/passives/stunmace.png"]= { ["x"]= 286, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/plusstrength.png"]= { + ["Art/2DArt/SkillIcons/passives/stunstr.png"]= { ["x"]= 312, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/plusstrengthdexterity.png"]= { + ["Art/2DArt/SkillIcons/passives/tempdex.png"]= { ["x"]= 338, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/plusstrengthintelligence.png"]= { + ["Art/2DArt/SkillIcons/passives/tempint.png"]= { ["x"]= 364, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/projectilespeed.png"]= { + ["Art/2DArt/SkillIcons/passives/totemandbrandattackspeed.png"]= { ["x"]= 390, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/shieldblock.png"]= { + ["Art/2DArt/SkillIcons/passives/totemandbranddamage.png"]= { ["x"]= 416, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/skillduration.png"]= { + ["Art/2DArt/SkillIcons/passives/totemandbrandrange.png"]= { ["x"]= 442, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/spellcritical.png"]= { + ["Art/2DArt/SkillIcons/passives/totemattackspeed.png"]= { ["x"]= 468, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/staffaccuracy.png"]= { + ["Art/2DArt/SkillIcons/passives/totemlife.png"]= { ["x"]= 494, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/staffspeed.png"]= { + ["Art/2DArt/SkillIcons/passives/trapcriticalstrike.png"]= { ["x"]= 520, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/stundex.png"]= { + ["Art/2DArt/SkillIcons/passives/trapdamage.png"]= { ["x"]= 546, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/stunmace.png"]= { + ["Art/2DArt/SkillIcons/passives/trapsduration.png"]= { ["x"]= 572, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/stunstr.png"]= { + ["Art/2DArt/SkillIcons/passives/trapsradius.png"]= { ["x"]= 598, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/tempdex.png"]= { + ["Art/2DArt/SkillIcons/passives/trapsspeed.png"]= { ["x"]= 624, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/tempint.png"]= { + ["Art/2DArt/SkillIcons/passives/weaponelementaldamagepercentage.png"]= { ["x"]= 650, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/totemandbrandattackspeed.png"]= { + ["Art/2DArt/SkillIcons/ArohonguiTribeSkill.png"]= { ["x"]= 676, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/totemandbranddamage.png"]= { + ["Art/2DArt/SkillIcons/HinekoraTribeSkill.png"]= { ["x"]= 702, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/totemandbrandrange.png"]= { + ["Art/2DArt/SkillIcons/KitavaTribeSkill.png"]= { ["x"]= 728, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/totemattackspeed.png"]= { + ["Art/2DArt/SkillIcons/NgamahuTribeSkill.png"]= { ["x"]= 754, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/totemlife.png"]= { + ["Art/2DArt/SkillIcons/RamakoTribeSkill.png"]= { ["x"]= 780, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/trapcriticalstrike.png"]= { + ["Art/2DArt/SkillIcons/RongokuraiTribeSkill.png"]= { ["x"]= 806, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/trapdamage.png"]= { + ["Art/2DArt/SkillIcons/TasalioTribeSkill.png"]= { ["x"]= 832, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/trapsduration.png"]= { + ["Art/2DArt/SkillIcons/TawhoaTribeSkill.png"]= { ["x"]= 858, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/trapsradius.png"]= { + ["Art/2DArt/SkillIcons/TukohamaTribeSkill.png"]= { ["x"]= 884, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/trapsspeed.png"]= { + ["Art/2DArt/SkillIcons/ValakoTribeSkill.png"]= { ["x"]= 910, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/weaponelementaldamagepercentage.png"]= { + ["Art/2DArt/SkillIcons/passives/HinekoraPassiveIcon1.png"]= { ["x"]= 936, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/ArohonguiTribeSkill.png"]= { - ["x"]= 0, - ["y"]= 312, - ["w"]= 26, - ["h"]= 26 - }, - ["Art/2DArt/SkillIcons/HinekoraTribeSkill.png"]= { - ["x"]= 26, - ["y"]= 312, - ["w"]= 26, - ["h"]= 26 - }, - ["Art/2DArt/SkillIcons/KitavaTribeSkill.png"]= { - ["x"]= 52, - ["y"]= 312, - ["w"]= 26, - ["h"]= 26 - }, - ["Art/2DArt/SkillIcons/NgamahuTribeSkill.png"]= { - ["x"]= 78, - ["y"]= 312, - ["w"]= 26, - ["h"]= 26 - }, - ["Art/2DArt/SkillIcons/RamakoTribeSkill.png"]= { - ["x"]= 104, - ["y"]= 312, - ["w"]= 26, - ["h"]= 26 - }, - ["Art/2DArt/SkillIcons/RongokuraiTribeSkill.png"]= { - ["x"]= 130, - ["y"]= 312, - ["w"]= 26, - ["h"]= 26 - }, - ["Art/2DArt/SkillIcons/TasalioTribeSkill.png"]= { - ["x"]= 156, - ["y"]= 312, - ["w"]= 26, - ["h"]= 26 - }, - ["Art/2DArt/SkillIcons/TawhoaTribeSkill.png"]= { - ["x"]= 182, - ["y"]= 312, - ["w"]= 26, - ["h"]= 26 - }, - ["Art/2DArt/SkillIcons/TukohamaTribeSkill.png"]= { - ["x"]= 208, - ["y"]= 312, - ["w"]= 26, - ["h"]= 26 - }, - ["Art/2DArt/SkillIcons/ValakoTribeSkill.png"]= { - ["x"]= 234, - ["y"]= 312, - ["w"]= 26, - ["h"]= 26 - }, - ["Art/2DArt/SkillIcons/passives/HinekoraPassiveIcon1.png"]= { - ["x"]= 260, - ["y"]= 312, - ["w"]= 26, - ["h"]= 26 - }, ["Art/2DArt/SkillIcons/passives/HinekoraPassiveIcon2.png"]= { - ["x"]= 286, - ["y"]= 312, + ["x"]= 962, + ["y"]= 286, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/HinekoraPassiveIcon3.png"]= { - ["x"]= 312, + ["x"]= 0, ["y"]= 312, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/SkillscostingLifenode.png"]= { - ["x"]= 338, + ["x"]= 26, ["y"]= 312, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/accuracyint.png"]= { - ["x"]= 364, + ["x"]= 52, ["y"]= 312, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/totemandbrandlife.png"]= { - ["x"]= 390, + ["x"]= 78, ["y"]= 312, ["w"]= 26, ["h"]= 26 @@ -2813,8 +2813,8 @@ return { } }, ["notableActive"]= { - ["filename"]= "https://web.poecdn.com/image/passive-skill/skills-3.jpg?24c5e3b9", - ["w"]= 962, + ["filename"]= "https://web.poecdn.com/image/passive-skill/skills-3.jpg?b1b66a3b", + ["w"]= 999, ["h"]= 1459, ["coords"]= { ["Art/2DArt/SkillIcons/passives/2handeddamage.png"]= { @@ -2974,3871 +2974,3997 @@ return { ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/Assassin/DeadlyInfusion.png"]= { - ["x"]= 0, - ["y"]= 375, + ["x"]= 962, + ["y"]= 338, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/Assassin/Elusive.png"]= { - ["x"]= 37, + ["x"]= 0, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/Assassin/NoxiousStrike.png"]= { - ["x"]= 74, + ["x"]= 37, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/Assassin/ToxicDelivery.png"]= { - ["x"]= 111, + ["x"]= 74, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/Assassin/UnstableInfusion.png"]= { - ["x"]= 148, + ["x"]= 111, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/AssassinAnointNotable.png"]= { - ["x"]= 185, + ["x"]= 148, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/AtlasTrees/AulBloodlineNotable.png"]= { - ["x"]= 222, + ["x"]= 185, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/AtlasTrees/BestiaryNotable4.png"]= { - ["x"]= 259, + ["x"]= 222, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/AtlasTrees/BloodLineOlrothNotable.png"]= { - ["x"]= 296, + ["x"]= 259, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/AtlasTrees/BoldUndertaking.png"]= { - ["x"]= 333, + ["x"]= 296, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/AtlasTrees/BreachNotable4.png"]= { - ["x"]= 370, + ["x"]= 333, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/AtlasTrees/DeliriumNotable1.png"]= { - ["x"]= 407, + ["x"]= 370, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/AtlasTrees/FarrulNotable1.png"]= { - ["x"]= 444, + ["x"]= 407, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/AtlasTrees/HarbingerNode1.png"]= { - ["x"]= 481, + ["x"]= 444, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/AtlasTrees/LyciaNotable1.png"]= { - ["x"]= 518, + ["x"]= 481, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/AtlasTrees/MorePrimalWisps.png"]= { - ["x"]= 555, + ["x"]= 518, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/AtlasTrees/MoreVividWisps.png"]= { - ["x"]= 592, + ["x"]= 555, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/AtlasTrees/MoreWildWisps.png"]= { - ["x"]= 629, + ["x"]= 592, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/AtlasTrees/TempestNotable1.png"]= { - ["x"]= 666, + ["x"]= 629, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/AtlasTrees/UltimatumNotable3.png"]= { - ["x"]= 703, + ["x"]= 666, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/AtlasTrees/UltimatumNotable4.png"]= { - ["x"]= 740, + ["x"]= 703, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/AttackBlindNotable.png"]= { - ["x"]= 777, + ["x"]= 740, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/AttackDamangeAndEvasionNotableIcon.png"]= { - ["x"]= 814, + ["x"]= 777, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/AttackPoisonNotable.png"]= { - ["x"]= 851, + ["x"]= 814, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/AuraEffectNotable.png"]= { - ["x"]= 888, + ["x"]= 851, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/AuraReservationNotable.png"]= { - ["x"]= 925, + ["x"]= 888, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/AvataroftheHunt2.png"]= { - ["x"]= 0, - ["y"]= 412, + ["x"]= 925, + ["y"]= 375, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/AvoidInterruptionFromCastingNotable.png"]= { - ["x"]= 37, - ["y"]= 412, + ["x"]= 962, + ["y"]= 375, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/AxeNotable1.png"]= { - ["x"]= 74, + ["x"]= 0, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/AxeNotable2.png"]= { - ["x"]= 111, + ["x"]= 37, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/AxeandSwordDamage.png"]= { - ["x"]= 148, + ["x"]= 74, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/AxesandAttackSpeed.png"]= { - ["x"]= 185, + ["x"]= 111, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/BannerAreaNotable.png"]= { - ["x"]= 222, + ["x"]= 148, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/BannerDurationNotable.png"]= { - ["x"]= 259, + ["x"]= 185, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/BannerEffectNotable.png"]= { - ["x"]= 296, + ["x"]= 222, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/BannerResourceAreaNotable.png"]= { - ["x"]= 333, + ["x"]= 259, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/BannersNotable.png"]= { - ["x"]= 370, + ["x"]= 296, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/BarragingProjectilesNotable.png"]= { - ["x"]= 407, + ["x"]= 333, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/BattleRouse.png"]= { - ["x"]= 444, + ["x"]= 370, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/Berserker/AspectOfCarnage.png"]= { - ["x"]= 481, + ["x"]= 407, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/Berserker/Blitz.png"]= { - ["x"]= 518, + ["x"]= 444, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/Berserker/CloakedAgony.png"]= { - ["x"]= 555, + ["x"]= 481, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/Berserker/CombatFrenzy.png"]= { - ["x"]= 592, + ["x"]= 518, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/Berserker/DefyPain.png"]= { - ["x"]= 629, + ["x"]= 555, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/Berserker/RiteOfRuin.png"]= { - ["x"]= 666, + ["x"]= 592, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/Berserker/WarBringer.png"]= { - ["x"]= 703, + ["x"]= 629, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/BeserkerAnointNotable.png"]= { - ["x"]= 740, + ["x"]= 666, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/BladeBarrierNotable.png"]= { - ["x"]= 777, + ["x"]= 703, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/BleedPoison.png"]= { - ["x"]= 814, + ["x"]= 740, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/BleedPoisonMitigateNotable.png"]= { - ["x"]= 851, + ["x"]= 777, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/BleedingNotable1.png"]= { - ["x"]= 888, + ["x"]= 814, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/BleedingNotable2.png"]= { - ["x"]= 925, + ["x"]= 851, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/BlockAttackDmgNotable.png"]= { + ["x"]= 888, + ["y"]= 412, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/BlockSpellDmgNotable.png"]= { + ["x"]= 925, + ["y"]= 412, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Blood2.png"]= { + ["x"]= 962, + ["y"]= 412, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/BloodPact.png"]= { ["x"]= 0, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/BlockSpellDmgNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/BloodSiphon.png"]= { ["x"]= 37, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Blood2.png"]= { + ["Art/2DArt/SkillIcons/passives/BloodyBludgeon.png"]= { ["x"]= 74, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/BloodPact.png"]= { + ["Art/2DArt/SkillIcons/passives/Boomerang.png"]= { ["x"]= 111, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/BloodSiphon.png"]= { + ["Art/2DArt/SkillIcons/passives/BowDamage.png"]= { ["x"]= 148, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/BloodyBludgeon.png"]= { + ["Art/2DArt/SkillIcons/passives/Brand2.png"]= { ["x"]= 185, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Boomerang.png"]= { + ["Art/2DArt/SkillIcons/passives/Brand4.png"]= { ["x"]= 222, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/BowDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/BrandDmgNotable.png"]= { ["x"]= 259, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Brand2.png"]= { + ["Art/2DArt/SkillIcons/passives/BreathofFlames2.png"]= { ["x"]= 296, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Brand4.png"]= { + ["Art/2DArt/SkillIcons/passives/BreathofLightening2.png"]= { ["x"]= 333, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/BrandDmgNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/BreathofRime2.png"]= { ["x"]= 370, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/BreathofFlames2.png"]= { + ["Art/2DArt/SkillIcons/passives/ByTheBlade.png"]= { ["x"]= 407, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/BreathofLightening2.png"]= { + ["Art/2DArt/SkillIcons/passives/CelestialPunishment.png"]= { ["x"]= 444, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/BreathofRime2.png"]= { + ["Art/2DArt/SkillIcons/passives/ChainingProjectiles.png"]= { ["x"]= 481, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ByTheBlade.png"]= { + ["Art/2DArt/SkillIcons/passives/Champion.png"]= { ["x"]= 518, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/CelestialPunishment.png"]= { + ["Art/2DArt/SkillIcons/passives/Champion/FirstStrikeLastFall.png"]= { ["x"]= 555, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ChainingProjectiles.png"]= { + ["Art/2DArt/SkillIcons/passives/Champion/Fortitude.png"]= { ["x"]= 592, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Champion.png"]= { + ["Art/2DArt/SkillIcons/passives/Champion/ImpalePassiveNotable.png"]= { ["x"]= 629, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Champion/FirstStrikeLastFall.png"]= { + ["Art/2DArt/SkillIcons/passives/Champion/Inpirational.png"]= { ["x"]= 666, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Champion/Fortitude.png"]= { + ["Art/2DArt/SkillIcons/passives/Champion/Unstopable.png"]= { ["x"]= 703, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Champion/ImpalePassiveNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Champion/WorthyCauses.png"]= { ["x"]= 740, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Champion/Inpirational.png"]= { + ["Art/2DArt/SkillIcons/passives/Champion/WorthyFoe.png"]= { ["x"]= 777, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Champion/Unstopable.png"]= { + ["Art/2DArt/SkillIcons/passives/ChampionAnointNotable.png"]= { ["x"]= 814, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Champion/WorthyCauses.png"]= { + ["Art/2DArt/SkillIcons/passives/ChaosDamage2.png"]= { ["x"]= 851, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Champion/WorthyFoe.png"]= { + ["Art/2DArt/SkillIcons/passives/ChaosDamageOverTimeNotable.png"]= { ["x"]= 888, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ChampionAnointNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/ChaosDamageOverTimeNotable2.png"]= { ["x"]= 925, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ChaosDamage2.png"]= { + ["Art/2DArt/SkillIcons/passives/ChaosResistNotable.png"]= { + ["x"]= 962, + ["y"]= 449, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ChaoticPotential.png"]= { ["x"]= 0, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ChaosDamageOverTimeNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/CheiftainAnointNotable.png"]= { ["x"]= 37, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ChaosDamageOverTimeNotable2.png"]= { + ["Art/2DArt/SkillIcons/passives/Chieftain/ArohunguiMoonsPresenceWarcry.png"]= { ["x"]= 74, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ChaosResistNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Chieftain/HinekoraDeathsFury.png"]= { ["x"]= 111, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ChaoticPotential.png"]= { + ["Art/2DArt/SkillIcons/passives/Chieftain/NgamahuFlamesAdvance.png"]= { ["x"]= 148, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/CheiftainAnointNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Chieftain/RamakoSunsLight.png"]= { ["x"]= 185, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Chieftain/ArohunguiMoonsPresenceWarcry.png"]= { + ["Art/2DArt/SkillIcons/passives/Chieftain/TasalioCleansingWater.png"]= { ["x"]= 222, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Chieftain/HinekoraDeathsFury.png"]= { + ["Art/2DArt/SkillIcons/passives/Chieftain/TukomahaWarsHerald.png"]= { ["x"]= 259, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Chieftain/NgamahuFlamesAdvance.png"]= { + ["Art/2DArt/SkillIcons/passives/Chieftain/ValakoStormsEmbrace.png"]= { ["x"]= 296, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Chieftain/RamakoSunsLight.png"]= { + ["Art/2DArt/SkillIcons/passives/ChillThemedNotable.png"]= { ["x"]= 333, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Chieftain/TasalioCleansingWater.png"]= { + ["Art/2DArt/SkillIcons/passives/ClawNotable1.png"]= { ["x"]= 370, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Chieftain/TukomahaWarsHerald.png"]= { + ["Art/2DArt/SkillIcons/passives/ClawNotable2.png"]= { ["x"]= 407, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Chieftain/ValakoStormsEmbrace.png"]= { + ["Art/2DArt/SkillIcons/passives/ClawsOfTheMagpie.png"]= { ["x"]= 444, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ChillThemedNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/CleverThief.png"]= { ["x"]= 481, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ClawNotable1.png"]= { + ["Art/2DArt/SkillIcons/passives/ColdAndFireHybridNotable.png"]= { ["x"]= 518, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ClawNotable2.png"]= { + ["Art/2DArt/SkillIcons/passives/ColdDamageEnemyNotable.png"]= { ["x"]= 555, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ClawsOfTheMagpie.png"]= { + ["Art/2DArt/SkillIcons/passives/ColdDamageOverTimeNotable.png"]= { ["x"]= 592, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/CleverThief.png"]= { + ["Art/2DArt/SkillIcons/passives/ColdResistNotable.png"]= { ["x"]= 629, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ColdAndFireHybridNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/ColdWeaponDmg.png"]= { ["x"]= 666, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ColdDamageEnemyNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/ColdheartedCalculation2.png"]= { ["x"]= 703, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ColdDamageOverTimeNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/CombatFocusNotable.png"]= { ["x"]= 740, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ColdResistNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/CombatStamina.png"]= { ["x"]= 777, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ColdWeaponDmg.png"]= { + ["Art/2DArt/SkillIcons/passives/CommandofSteel.png"]= { ["x"]= 814, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ColdheartedCalculation2.png"]= { + ["Art/2DArt/SkillIcons/passives/Constitution.png"]= { ["x"]= 851, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/CombatFocusNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Coordination.png"]= { ["x"]= 888, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/CombatStamina.png"]= { + ["Art/2DArt/SkillIcons/passives/CorpsesNotable.png"]= { ["x"]= 925, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/CommandofSteel.png"]= { + ["Art/2DArt/SkillIcons/passives/Corruption.png"]= { + ["x"]= 962, + ["y"]= 486, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/CritStrikeBleedingNotable.png"]= { ["x"]= 0, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Constitution.png"]= { + ["Art/2DArt/SkillIcons/passives/CurseAreaOfEffectNotable.png"]= { ["x"]= 37, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Coordination.png"]= { + ["Art/2DArt/SkillIcons/passives/CurseEffectNotable.png"]= { ["x"]= 74, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/CorpsesNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/CurseNotable.png"]= { ["x"]= 111, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Corruption.png"]= { + ["Art/2DArt/SkillIcons/passives/CurseNotable2.png"]= { ["x"]= 148, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/CritStrikeBleedingNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/CursemitigationclusterNotable.png"]= { ["x"]= 185, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/CurseAreaOfEffectNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/DaggerNotable1.png"]= { ["x"]= 222, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/CurseEffectNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/DaggerandClawDamage.png"]= { ["x"]= 259, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/CurseNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/DamageOverTimeNotable.png"]= { ["x"]= 296, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/CurseNotable2.png"]= { + ["Art/2DArt/SkillIcons/passives/DamageofMinionsNotable.png"]= { ["x"]= 333, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/CursemitigationclusterNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/DarkestHour.png"]= { ["x"]= 370, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DaggerNotable1.png"]= { + ["Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeFrenzyChargeNotable.png"]= { ["x"]= 407, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DaggerandClawDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/DeadEye/FarShot.png"]= { ["x"]= 444, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DamageOverTimeNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/DeadEye/GatherWinds.png"]= { ["x"]= 481, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DamageofMinionsNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/DeadEye/Ricochet.png"]= { ["x"]= 518, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DarkestHour.png"]= { + ["Art/2DArt/SkillIcons/passives/DeadeyeAnointNotable.png"]= { ["x"]= 555, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeFrenzyChargeNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/DeepBreathsNotable.png"]= { ["x"]= 592, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DeadEye/FarShot.png"]= { + ["Art/2DArt/SkillIcons/passives/DiamondSkin2.png"]= { ["x"]= 629, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DeadEye/GatherWinds.png"]= { + ["Art/2DArt/SkillIcons/passives/DireTorment.png"]= { ["x"]= 666, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DeadEye/Ricochet.png"]= { + ["Art/2DArt/SkillIcons/passives/DivineFury.png"]= { ["x"]= 703, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DeadeyeAnointNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/DivineWrath.png"]= { ["x"]= 740, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DeepBreathsNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/DmgHeraldSkillsNotable.png"]= { ["x"]= 777, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DiamondSkin2.png"]= { + ["Art/2DArt/SkillIcons/passives/DmgWhenChannelSkillsNotable.png"]= { ["x"]= 814, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DireTorment.png"]= { + ["Art/2DArt/SkillIcons/passives/DodgeAtksNotable.png"]= { ["x"]= 851, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DivineFury.png"]= { + ["Art/2DArt/SkillIcons/passives/Dreamer.png"]= { ["x"]= 888, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DivineWrath.png"]= { + ["Art/2DArt/SkillIcons/passives/DruidicRite.png"]= { ["x"]= 925, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DmgHeraldSkillsNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/DualWieldNotable.png"]= { + ["x"]= 962, + ["y"]= 523, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/DualWieldingBlockNotable.png"]= { ["x"]= 0, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DmgWhenChannelSkillsNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/DualWieldingDamage.png"]= { ["x"]= 37, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DodgeAtksNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/DurationofMinionsNotable.png"]= { ["x"]= 74, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Dreamer.png"]= { + ["Art/2DArt/SkillIcons/passives/ElementalAilmentResistance.png"]= { ["x"]= 111, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DruidicRite.png"]= { + ["Art/2DArt/SkillIcons/passives/ElementalDamagewithAttacks2.png"]= { ["x"]= 148, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DualWieldNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/ElementalDominion2.png"]= { ["x"]= 185, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DualWieldingBlockNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/ElementalFocus.png"]= { ["x"]= 222, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DualWieldingDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/Elementalist/ChillSpecialisation.png"]= { ["x"]= 259, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DurationofMinionsNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Elementalist/ElemancerIcon.png"]= { ["x"]= 296, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ElementalAilmentResistance.png"]= { + ["Art/2DArt/SkillIcons/passives/Elementalist/IgniteSpecialisation.png"]= { ["x"]= 333, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ElementalDamagewithAttacks2.png"]= { + ["Art/2DArt/SkillIcons/passives/Elementalist/IridescentFlesh.png"]= { ["x"]= 370, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ElementalDominion2.png"]= { + ["Art/2DArt/SkillIcons/passives/Elementalist/LiegeOfThePrimordial.png"]= { ["x"]= 407, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ElementalFocus.png"]= { + ["Art/2DArt/SkillIcons/passives/Elementalist/PendulumOfDestruction.png"]= { ["x"]= 444, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Elementalist/ChillSpecialisation.png"]= { + ["Art/2DArt/SkillIcons/passives/Elementalist/PrimevalForce.png"]= { ["x"]= 481, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Elementalist/ElemancerIcon.png"]= { + ["Art/2DArt/SkillIcons/passives/Elementalist/ShockSpecialisation.png"]= { ["x"]= 518, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Elementalist/IgniteSpecialisation.png"]= { + ["Art/2DArt/SkillIcons/passives/ElementalistAnointNotable.png"]= { ["x"]= 555, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Elementalist/IridescentFlesh.png"]= { + ["Art/2DArt/SkillIcons/passives/EnduranceChargeNotable.png"]= { ["x"]= 592, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Elementalist/LiegeOfThePrimordial.png"]= { + ["Art/2DArt/SkillIcons/passives/EnergyShieldNotable.png"]= { ["x"]= 629, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Elementalist/PendulumOfDestruction.png"]= { + ["Art/2DArt/SkillIcons/passives/Entropy.png"]= { ["x"]= 666, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Elementalist/PrimevalForce.png"]= { + ["Art/2DArt/SkillIcons/passives/EscalationNotable.png"]= { ["x"]= 703, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Elementalist/ShockSpecialisation.png"]= { + ["Art/2DArt/SkillIcons/passives/EssenceSurge.png"]= { ["x"]= 740, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ElementalistAnointNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/EvasionAndBlindNotable.png"]= { ["x"]= 777, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/EnduranceChargeNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/EvasionAndPhasingNotable.png"]= { ["x"]= 814, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/EnergyShieldNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/EvasionNotable.png"]= { ["x"]= 851, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Entropy.png"]= { + ["Art/2DArt/SkillIcons/passives/ExceptionalPerformance.png"]= { ["x"]= 888, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/EscalationNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/ExplosiveRunes.png"]= { ["x"]= 925, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/EssenceSurge.png"]= { + ["Art/2DArt/SkillIcons/passives/EyesOfTheDeadly.png"]= { + ["x"]= 962, + ["y"]= 560, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/EyesOfThePowerful.png"]= { ["x"]= 0, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/EvasionAndBlindNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/EyesOfTheSavant.png"]= { ["x"]= 37, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/EvasionAndPhasingNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/FasterBleeding2.png"]= { ["x"]= 74, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/EvasionNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/FatalBlade.png"]= { ["x"]= 111, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ExceptionalPerformance.png"]= { + ["Art/2DArt/SkillIcons/passives/FireAilment.png"]= { ["x"]= 148, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ExplosiveRunes.png"]= { + ["Art/2DArt/SkillIcons/passives/FireDamageOverTimeNotable.png"]= { ["x"]= 185, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/EyesOfTheDeadly.png"]= { + ["Art/2DArt/SkillIcons/passives/FireResistNotable.png"]= { ["x"]= 222, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/EyesOfThePowerful.png"]= { + ["Art/2DArt/SkillIcons/passives/FlaskDuration.png"]= { ["x"]= 259, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/EyesOfTheSavant.png"]= { + ["Art/2DArt/SkillIcons/passives/FlaskNotableCritStrikeRecharge.png"]= { ["x"]= 296, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/FasterBleeding2.png"]= { + ["Art/2DArt/SkillIcons/passives/FlaskNotableFlasksLastLonger.png"]= { ["x"]= 333, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/FatalBlade.png"]= { + ["Art/2DArt/SkillIcons/passives/ForceOfNature.png"]= { ["x"]= 370, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/FireAilment.png"]= { + ["Art/2DArt/SkillIcons/passives/ForkingProjectilesNotable.png"]= { ["x"]= 407, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/FireDamageOverTimeNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/FortifyNotable1.png"]= { ["x"]= 444, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/FireResistNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/FortifyNotable2.png"]= { ["x"]= 481, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/FlaskDuration.png"]= { + ["Art/2DArt/SkillIcons/passives/FrenzyChargeNotable.png"]= { ["x"]= 518, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/FlaskNotableCritStrikeRecharge.png"]= { + ["Art/2DArt/SkillIcons/passives/GenericBlockNotable1.png"]= { ["x"]= 555, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/FlaskNotableFlasksLastLonger.png"]= { + ["Art/2DArt/SkillIcons/passives/GenericBlockNotable2.png"]= { ["x"]= 592, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ForceOfNature.png"]= { + ["Art/2DArt/SkillIcons/passives/GenericSpellBlockNotable.png"]= { ["x"]= 629, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ForkingProjectilesNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Gladiator/GLADBloodAndSand.png"]= { ["x"]= 666, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/FortifyNotable1.png"]= { + ["Art/2DArt/SkillIcons/passives/Gladiator/GLADBloodInEyes.png"]= { ["x"]= 703, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/FortifyNotable2.png"]= { + ["Art/2DArt/SkillIcons/passives/Gladiator/GLADPainForged.png"]= { ["x"]= 740, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/FrenzyChargeNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Gladiator/GLADVersitileCombatant.png"]= { ["x"]= 777, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/GenericBlockNotable1.png"]= { + ["Art/2DArt/SkillIcons/passives/Gladiator/GLADViolence.png"]= { ["x"]= 814, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/GenericBlockNotable2.png"]= { + ["Art/2DArt/SkillIcons/passives/Gladiator/GLADViolentRetaliation.png"]= { ["x"]= 851, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/GenericSpellBlockNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Gladiator/GladiatorDualWiledSwordAxeNotable.png"]= { ["x"]= 888, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Gladiator/GLADBloodAndSand.png"]= { + ["Art/2DArt/SkillIcons/passives/GladiatorAnointNotable.png"]= { ["x"]= 925, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Gladiator/GLADBloodInEyes.png"]= { + ["Art/2DArt/SkillIcons/passives/GolemsNotable.png"]= { + ["x"]= 962, + ["y"]= 597, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/GreenProjectileAttackNotable.png"]= { ["x"]= 0, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Gladiator/GLADPainForged.png"]= { + ["Art/2DArt/SkillIcons/passives/GrowthandDecay.png"]= { ["x"]= 37, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Gladiator/GLADVersitileCombatant.png"]= { + ["Art/2DArt/SkillIcons/passives/Guardian/GuardianHallowingFlameNotable.png"]= { ["x"]= 74, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Gladiator/GLADViolence.png"]= { + ["Art/2DArt/SkillIcons/passives/Guardian/HarmonyOfPurpose.png"]= { ["x"]= 111, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Gladiator/GLADViolentRetaliation.png"]= { + ["Art/2DArt/SkillIcons/passives/Guardian/Radient Crusade.png"]= { ["x"]= 148, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Gladiator/GladiatorDualWiledSwordAxeNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Guardian/RadientFaith.png"]= { ["x"]= 185, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/GladiatorAnointNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Guardian/ShieldMastery.png"]= { ["x"]= 222, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/GolemsNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Guardian/TimeOfNeed.png"]= { ["x"]= 259, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/GreenProjectileAttackNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Guardian/Unwavering Crusade.png"]= { ["x"]= 296, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/GrowthandDecay.png"]= { + ["Art/2DArt/SkillIcons/passives/Guardian/UnwaveringFaith.png"]= { ["x"]= 333, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Guardian/GuardianHallowingFlameNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/GuardianAnointNotable.png"]= { ["x"]= 370, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Guardian/HarmonyOfPurpose.png"]= { + ["Art/2DArt/SkillIcons/passives/Harrier.png"]= { ["x"]= 407, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Guardian/Radient Crusade.png"]= { + ["Art/2DArt/SkillIcons/passives/HeartandSoul.png"]= { ["x"]= 444, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Guardian/RadientFaith.png"]= { + ["Art/2DArt/SkillIcons/passives/HeartofChaos.png"]= { ["x"]= 481, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Guardian/ShieldMastery.png"]= { + ["Art/2DArt/SkillIcons/passives/HeartoftheOak.png"]= { ["x"]= 518, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Guardian/TimeOfNeed.png"]= { + ["Art/2DArt/SkillIcons/passives/Hearty.png"]= { ["x"]= 555, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Guardian/Unwavering Crusade.png"]= { + ["Art/2DArt/SkillIcons/passives/HeirophantAnointNotable.png"]= { ["x"]= 592, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Guardian/UnwaveringFaith.png"]= { + ["Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.png"]= { ["x"]= 629, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/GuardianAnointNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/HeraldDamageNotable.png"]= { ["x"]= 666, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Harrier.png"]= { + ["Art/2DArt/SkillIcons/passives/HeraldReservation.png"]= { ["x"]= 703, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/HeartandSoul.png"]= { + ["Art/2DArt/SkillIcons/passives/Hierophant/AncestralZeal.png"]= { ["x"]= 740, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/HeartofChaos.png"]= { + ["Art/2DArt/SkillIcons/passives/Hierophant/ArcaneSurge.png"]= { ["x"]= 777, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/HeartoftheOak.png"]= { + ["Art/2DArt/SkillIcons/passives/Hierophant/DiscipleOfRuin.png"]= { ["x"]= 814, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Hearty.png"]= { + ["Art/2DArt/SkillIcons/passives/Hierophant/ItemAugment.png"]= { ["x"]= 851, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/HeirophantAnointNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Hierophant/MindOverBeing.png"]= { ["x"]= 888, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.png"]= { + ["Art/2DArt/SkillIcons/passives/Hierophant/MindOverBody.png"]= { ["x"]= 925, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/HeraldDamageNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Hierophant/SignOfPurpose.png"]= { + ["x"]= 962, + ["y"]= 634, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Hierophant/SpiritualEmpowerment.png"]= { ["x"]= 0, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/HeraldReservation.png"]= { + ["Art/2DArt/SkillIcons/passives/HiredKiller2.png"]= { ["x"]= 37, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Hierophant/AncestralZeal.png"]= { + ["Art/2DArt/SkillIcons/passives/HoldingShieldDamage.png"]= { ["x"]= 74, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Hierophant/ArcaneSurge.png"]= { + ["Art/2DArt/SkillIcons/passives/Hunter.png"]= { ["x"]= 111, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Hierophant/DiscipleOfRuin.png"]= { + ["Art/2DArt/SkillIcons/passives/IgniteAshNotable.png"]= { ["x"]= 148, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Hierophant/ItemAugment.png"]= { + ["Art/2DArt/SkillIcons/passives/IgniteAttackNotable.png"]= { ["x"]= 185, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Hierophant/MindOverBeing.png"]= { + ["Art/2DArt/SkillIcons/passives/IgniteBleedNotable.png"]= { ["x"]= 222, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Hierophant/MindOverBody.png"]= { + ["Art/2DArt/SkillIcons/passives/IgniteStunNotable.png"]= { ["x"]= 259, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Hierophant/SignOfPurpose.png"]= { + ["Art/2DArt/SkillIcons/passives/IgnorePain.png"]= { ["x"]= 296, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Hierophant/SpiritualEmpowerment.png"]= { + ["Art/2DArt/SkillIcons/passives/Impale1HandNotable.png"]= { ["x"]= 333, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/HiredKiller2.png"]= { + ["Art/2DArt/SkillIcons/passives/ImpaleEffectNotable.png"]= { ["x"]= 370, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/HoldingShieldDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/ImpaleNotable1.png"]= { ["x"]= 407, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Hunter.png"]= { + ["Art/2DArt/SkillIcons/passives/ImpaleNotable2.png"]= { ["x"]= 444, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/IgniteAshNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreaseCritChanceNotable.png"]= { ["x"]= 481, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/IgniteAttackNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreaseMinionLifeNotable.png"]= { ["x"]= 518, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/IgniteBleedNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreasedAttackDamageNotable.png"]= { ["x"]= 555, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/IgniteStunNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreasedChaosDamage.png"]= { ["x"]= 592, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/IgnorePain.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreasedColdDamage.png"]= { ["x"]= 629, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Impale1HandNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreasedElementalDamage.png"]= { ["x"]= 666, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ImpaleEffectNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreasedFireDamage.png"]= { ["x"]= 703, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ImpaleNotable1.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreasedLightningDamage.png"]= { ["x"]= 740, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ImpaleNotable2.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreasedManaCostNotable.png"]= { ["x"]= 777, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/IncreaseCritChanceNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreasedMaximumLifeNotable.png"]= { ["x"]= 814, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/IncreaseMinionLifeNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreasedMinionDamageNotable.png"]= { ["x"]= 851, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/IncreasedAttackDamageNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreasedNonDamageAilmentNotable.png"]= { ["x"]= 888, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/IncreasedChaosDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.png"]= { ["x"]= 925, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/IncreasedColdDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreasedSpellDamageNode.png"]= { + ["x"]= 962, + ["y"]= 671, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/IncreasedSpellDamageNotable.png"]= { ["x"]= 0, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/IncreasedElementalDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreasedWarcryNotable.png"]= { ["x"]= 37, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/IncreasedFireDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/InfusedFlesh.png"]= { ["x"]= 74, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/IncreasedLightningDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/InquisitorAnointNotable.png"]= { ["x"]= 111, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/IncreasedManaCostNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Inquistitor/ElementalDomination.png"]= { ["x"]= 148, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/IncreasedMaximumLifeNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Inquistitor/ElementalForce.png"]= { ["x"]= 185, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/IncreasedMinionDamageNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Inquistitor/ElementalMastery.png"]= { ["x"]= 222, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/IncreasedNonDamageAilmentNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Inquistitor/GloryOfTheSavant.png"]= { ["x"]= 259, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/Inquistitor/InstrumentsOfVirtue.png"]= { ["x"]= 296, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/IncreasedSpellDamageNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Inquistitor/InstrumentsofZeal.png"]= { ["x"]= 333, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/IncreasedSpellDamageNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Inquistitor/Sanctify.png"]= { ["x"]= 370, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/IncreasedWarcryNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Inspiration.png"]= { ["x"]= 407, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/InfusedFlesh.png"]= { + ["Art/2DArt/SkillIcons/passives/IntensifyNotable.png"]= { ["x"]= 444, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/InquisitorAnointNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Juggernaut/JuggernautArmourNotable.png"]= { ["x"]= 481, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Inquistitor/ElementalDomination.png"]= { + ["Art/2DArt/SkillIcons/passives/Juggernaut/Unbreakable.png"]= { ["x"]= 518, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Inquistitor/ElementalForce.png"]= { + ["Art/2DArt/SkillIcons/passives/Juggernaut/Undeniable.png"]= { ["x"]= 555, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Inquistitor/ElementalMastery.png"]= { + ["Art/2DArt/SkillIcons/passives/Juggernaut/Unflinching.png"]= { ["x"]= 592, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Inquistitor/GloryOfTheSavant.png"]= { + ["Art/2DArt/SkillIcons/passives/Juggernaut/Unrelenting.png"]= { ["x"]= 629, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Inquistitor/InstrumentsOfVirtue.png"]= { + ["Art/2DArt/SkillIcons/passives/Juggernaut/Unstoppable.png"]= { ["x"]= 666, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Inquistitor/InstrumentsofZeal.png"]= { + ["Art/2DArt/SkillIcons/passives/Juggernaut/Unyielding.png"]= { ["x"]= 703, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Inquistitor/Sanctify.png"]= { + ["Art/2DArt/SkillIcons/passives/JuggernautAnointNotable.png"]= { ["x"]= 740, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Inspiration.png"]= { + ["Art/2DArt/SkillIcons/passives/KeystoneArmourMaster.png"]= { ["x"]= 777, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/IntensifyNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/KeystoneWhispersOfDoom.png"]= { ["x"]= 814, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Juggernaut/JuggernautArmourNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/LifeArmourAndEvasion.png"]= { ["x"]= 851, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Juggernaut/Unbreakable.png"]= { + ["Art/2DArt/SkillIcons/passives/LifeFlasks.png"]= { ["x"]= 888, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Juggernaut/Undeniable.png"]= { + ["Art/2DArt/SkillIcons/passives/LifeGainOnHitNotable.png"]= { ["x"]= 925, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Juggernaut/Unflinching.png"]= { + ["Art/2DArt/SkillIcons/passives/LifeManaFlasksrecovery.png"]= { + ["x"]= 962, + ["y"]= 708, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/LifeRecoupNotable.png"]= { ["x"]= 0, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Juggernaut/Unrelenting.png"]= { + ["Art/2DArt/SkillIcons/passives/LifeRegenerationGainRegenNotable.png"]= { ["x"]= 37, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Juggernaut/Unstoppable.png"]= { + ["Art/2DArt/SkillIcons/passives/LifeRegenerationLowlifeBonusNotable.png"]= { ["x"]= 74, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Juggernaut/Unyielding.png"]= { + ["Art/2DArt/SkillIcons/passives/LifeandCursesN.png"]= { ["x"]= 111, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/JuggernautAnointNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/LifeandManaFlasks.png"]= { ["x"]= 148, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/KeystoneWhispersOfDoom.png"]= { + ["Art/2DArt/SkillIcons/passives/LifeandResistancesofMinions.png"]= { ["x"]= 185, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/LifeArmourAndEvasion.png"]= { + ["Art/2DArt/SkillIcons/passives/LightOfDivinity.png"]= { ["x"]= 222, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/LifeFlasks.png"]= { + ["Art/2DArt/SkillIcons/passives/LightningResistNotable.png"]= { ["x"]= 259, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/LifeGainOnHitNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/LinkNotable3.png"]= { ["x"]= 296, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/LifeManaFlasksrecovery.png"]= { + ["Art/2DArt/SkillIcons/passives/LinkNotable4.png"]= { ["x"]= 333, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/LifeRecoupNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/LustforCarnage.png"]= { ["x"]= 370, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/LifeRegenerationGainRegenNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/MaceNotable1.png"]= { ["x"]= 407, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/LifeRegenerationLowlifeBonusNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/MaceNotable2.png"]= { ["x"]= 444, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/LifeandCursesN.png"]= { + ["Art/2DArt/SkillIcons/passives/MaceandStaffDamage.png"]= { ["x"]= 481, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/LifeandManaFlasks.png"]= { + ["Art/2DArt/SkillIcons/passives/ManaDamageKeystone.png"]= { ["x"]= 518, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/LifeandResistancesofMinions.png"]= { + ["Art/2DArt/SkillIcons/passives/ManaFlasksOften.png"]= { ["x"]= 555, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/LightOfDivinity.png"]= { + ["Art/2DArt/SkillIcons/passives/ManaGuardNotable.png"]= { ["x"]= 592, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/LightningResistNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/ManaNotable.png"]= { ["x"]= 629, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/LinkNotable3.png"]= { + ["Art/2DArt/SkillIcons/passives/ManaandArcaneSurge.png"]= { ["x"]= 666, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/LinkNotable4.png"]= { + ["Art/2DArt/SkillIcons/passives/ManaandSpellBlock.png"]= { ["x"]= 703, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/LustforCarnage.png"]= { + ["Art/2DArt/SkillIcons/passives/ManaandSpellDamage.png"]= { ["x"]= 740, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MaceNotable1.png"]= { + ["Art/2DArt/SkillIcons/passives/Mark.png"]= { ["x"]= 777, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MaceNotable2.png"]= { + ["Art/2DArt/SkillIcons/passives/MarkNotable1.png"]= { ["x"]= 814, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MaceandStaffDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/MarkNotable2.png"]= { ["x"]= 851, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ManaDamageKeystone.png"]= { + ["Art/2DArt/SkillIcons/passives/MarkNotableIncreasedEffect.png"]= { ["x"]= 888, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ManaFlasksOften.png"]= { + ["Art/2DArt/SkillIcons/passives/MarkNotableMarkSpellRecently.png"]= { ["x"]= 925, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ManaGuardNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/MartialExperience.png"]= { + ["x"]= 962, + ["y"]= 745, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/MasterofForce.png"]= { ["x"]= 0, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ManaNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/MaxElementalResistNotable.png"]= { ["x"]= 37, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ManaandArcaneSurge.png"]= { + ["Art/2DArt/SkillIcons/passives/MaxManaNotable.png"]= { ["x"]= 74, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ManaandSpellBlock.png"]= { + ["Art/2DArt/SkillIcons/passives/MaximumElementalResistances2.png"]= { ["x"]= 111, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ManaandSpellDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/MeasuredFuryNotable.png"]= { ["x"]= 148, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Mark.png"]= { + ["Art/2DArt/SkillIcons/passives/MeleeAoENode.png"]= { ["x"]= 185, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MarkNotable1.png"]= { + ["Art/2DArt/SkillIcons/passives/MeleeAoENotable.png"]= { ["x"]= 222, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MarkNotable2.png"]= { + ["Art/2DArt/SkillIcons/passives/MeleeCriticalStrikesNotable.png"]= { ["x"]= 259, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MarkNotableIncreasedEffect.png"]= { + ["Art/2DArt/SkillIcons/passives/MeleeFireNotable.png"]= { ["x"]= 296, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MarkNotableMarkSpellRecently.png"]= { + ["Art/2DArt/SkillIcons/passives/MeleeRange2.png"]= { ["x"]= 333, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MartialExperience.png"]= { + ["Art/2DArt/SkillIcons/passives/MeleeUtility.png"]= { ["x"]= 370, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MasterofForce.png"]= { + ["Art/2DArt/SkillIcons/passives/Meleerange.png"]= { ["x"]= 407, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MaxElementalResistNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/MentalRapidity.png"]= { ["x"]= 444, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MaxManaNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/MindPact.png"]= { ["x"]= 481, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MaximumElementalResistances2.png"]= { + ["Art/2DArt/SkillIcons/passives/MineAreaOfEffectNotable.png"]= { ["x"]= 518, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MeasuredFuryNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/MineCriticalStrikesNotable.png"]= { ["x"]= 555, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MeleeAoENode.png"]= { + ["Art/2DArt/SkillIcons/passives/MineManaReservationNotable.png"]= { ["x"]= 592, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MeleeAoENotable.png"]= { + ["Art/2DArt/SkillIcons/passives/MineTrap.png"]= { ["x"]= 629, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MeleeCriticalStrikesNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/MinionDmgHeraldSkillsNotable.png"]= { ["x"]= 666, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MeleeFireNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Mirage.png"]= { ["x"]= 703, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MeleeRange2.png"]= { + ["Art/2DArt/SkillIcons/passives/NaturalAuthorityNotable.png"]= { ["x"]= 740, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MeleeUtility.png"]= { + ["Art/2DArt/SkillIcons/passives/Necromancer/CommandingTheDarkness.png"]= { ["x"]= 777, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Meleerange.png"]= { + ["Art/2DArt/SkillIcons/passives/Necromancer/CorpseConsumptionNotable2.png"]= { ["x"]= 814, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MentalRapidity.png"]= { + ["Art/2DArt/SkillIcons/passives/Necromancer/DefensiveMinionNotable.png"]= { ["x"]= 851, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MindPact.png"]= { + ["Art/2DArt/SkillIcons/passives/Necromancer/EssenceGlutton.png"]= { ["x"]= 888, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MineAreaOfEffectNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Necromancer/GenericMinionNotable.png"]= { ["x"]= 925, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MineCriticalStrikesNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Necromancer/GiftsOfTheDamned.png"]= { + ["x"]= 962, + ["y"]= 782, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Necromancer/OffensiveMinionNotable.png"]= { ["x"]= 0, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MineManaReservationNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Necromancer/PlagueBringer.png"]= { ["x"]= 37, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MineTrap.png"]= { + ["Art/2DArt/SkillIcons/passives/NecromancerAnointNotable.png"]= { ["x"]= 74, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MinionDmgHeraldSkillsNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Occultist/FatefulEchoes.png"]= { ["x"]= 111, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Mirage.png"]= { + ["Art/2DArt/SkillIcons/passives/Occultist/FrigidWake.png"]= { ["x"]= 148, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/NaturalAuthorityNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Occultist/LotusExtract.png"]= { ["x"]= 185, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Necromancer/CommandingTheDarkness.png"]= { + ["Art/2DArt/SkillIcons/passives/Occultist/SoulCatalyst.png"]= { ["x"]= 222, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Necromancer/CorpseConsumptionNotable2.png"]= { + ["Art/2DArt/SkillIcons/passives/Occultist/VoidBeacon.png"]= { ["x"]= 259, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Necromancer/DefensiveMinionNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Occultist/VowOfDamnation.png"]= { ["x"]= 296, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Necromancer/EssenceGlutton.png"]= { + ["Art/2DArt/SkillIcons/passives/Occultist/WitheringPresence.png"]= { ["x"]= 333, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Necromancer/GenericMinionNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/OccultistAnointNotable.png"]= { ["x"]= 370, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Necromancer/GiftsOfTheDamned.png"]= { + ["Art/2DArt/SkillIcons/passives/OneHandedPhysicalAndLeechNotable.png"]= { ["x"]= 407, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Necromancer/OffensiveMinionNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/PathFinder/AlchemistGift.png"]= { ["x"]= 444, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Necromancer/PlagueBringer.png"]= { + ["Art/2DArt/SkillIcons/passives/PathFinder/MasterAlchemist.png"]= { ["x"]= 481, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/NecromancerAnointNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/PathFinder/MasterHerbalist.png"]= { ["x"]= 518, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Occultist/FatefulEchoes.png"]= { + ["Art/2DArt/SkillIcons/passives/PathFinder/MasterSurgeon.png"]= { ["x"]= 555, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Occultist/FrigidWake.png"]= { + ["Art/2DArt/SkillIcons/passives/PathFinder/Master Toxicist.png"]= { ["x"]= 592, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Occultist/LotusExtract.png"]= { + ["Art/2DArt/SkillIcons/passives/PathFinder/NaturesAdrenaline.png"]= { ["x"]= 629, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Occultist/SoulCatalyst.png"]= { + ["Art/2DArt/SkillIcons/passives/PathFinder/VeteranBowyer.png"]= { ["x"]= 666, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Occultist/VoidBeacon.png"]= { + ["Art/2DArt/SkillIcons/passives/PathfinderAnointNotable.png"]= { ["x"]= 703, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Occultist/VowOfDamnation.png"]= { + ["Art/2DArt/SkillIcons/passives/PhysicalDamageNotable.png"]= { ["x"]= 740, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Occultist/WitheringPresence.png"]= { + ["Art/2DArt/SkillIcons/passives/PhysicalDamageNotableGreen.png"]= { ["x"]= 777, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/OccultistAnointNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeHybrid.png"]= { ["x"]= 814, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/OneHandedPhysicalAndLeechNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNotable.png"]= { ["x"]= 851, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/PathFinder/AlchemistGift.png"]= { + ["Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimenotable1.png"]= { ["x"]= 888, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/PathFinder/MasterAlchemist.png"]= { + ["Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimenotable2.png"]= { ["x"]= 925, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/PathFinder/MasterHerbalist.png"]= { + ["Art/2DArt/SkillIcons/passives/Poison.png"]= { + ["x"]= 962, + ["y"]= 819, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/PoisonSpellsNotable.png"]= { ["x"]= 0, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/PathFinder/MasterSurgeon.png"]= { + ["Art/2DArt/SkillIcons/passives/PowerChargeNotable.png"]= { ["x"]= 37, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/PathFinder/Master Toxicist.png"]= { + ["Art/2DArt/SkillIcons/passives/Primalist/PrimalistCorpseLoot.png"]= { ["x"]= 74, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/PathFinder/NaturesAdrenaline.png"]= { + ["Art/2DArt/SkillIcons/passives/Primalist/PrimalistInventoryExpansion.png"]= { ["x"]= 111, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/PathFinder/VeteranBowyer.png"]= { + ["Art/2DArt/SkillIcons/passives/ProfaneChemistry.png"]= { ["x"]= 148, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/PathfinderAnointNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/ProjectileDmgNotable.png"]= { ["x"]= 185, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/PhysicalDamageNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/ProjectilesNotable.png"]= { ["x"]= 222, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/PhysicalDamageNotableGreen.png"]= { + ["Art/2DArt/SkillIcons/passives/ProtectiveWinds.png"]= { ["x"]= 259, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeHybrid.png"]= { + ["Art/2DArt/SkillIcons/passives/QuickRecovery.png"]= { ["x"]= 296, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/RageNotable.png"]= { ["x"]= 333, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimenotable1.png"]= { + ["Art/2DArt/SkillIcons/passives/RageNotable1.png"]= { ["x"]= 370, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimenotable2.png"]= { + ["Art/2DArt/SkillIcons/passives/RageNotable2.png"]= { ["x"]= 407, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Poison.png"]= { + ["Art/2DArt/SkillIcons/passives/RageNotable3.png"]= { ["x"]= 444, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/PoisonSpellsNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/RangedTotemCriticalStrikes.png"]= { ["x"]= 481, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/PowerChargeNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/RangedTotemOffensive.png"]= { ["x"]= 518, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Primalist/PrimalistCorpseLoot.png"]= { + ["Art/2DArt/SkillIcons/passives/RedHolyAttackNotable.png"]= { ["x"]= 555, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Primalist/PrimalistInventoryExpansion.png"]= { + ["Art/2DArt/SkillIcons/passives/Redemption.png"]= { ["x"]= 592, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ProfaneChemistry.png"]= { + ["Art/2DArt/SkillIcons/passives/ReducedManaNotable.png"]= { ["x"]= 629, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ProjectileDmgNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/ReducedProjectileSpeedNotable.png"]= { ["x"]= 666, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ProjectilesNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNotable.png"]= { ["x"]= 703, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ProtectiveWinds.png"]= { + ["Art/2DArt/SkillIcons/passives/Resourcefulness.png"]= { ["x"]= 740, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/QuickRecovery.png"]= { + ["Art/2DArt/SkillIcons/passives/Retaliation.png"]= { ["x"]= 777, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/RageNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/RetaliationAoE.png"]= { ["x"]= 814, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/RageNotable1.png"]= { + ["Art/2DArt/SkillIcons/passives/RetaliationAttackBlock.png"]= { ["x"]= 851, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/RageNotable2.png"]= { + ["Art/2DArt/SkillIcons/passives/RetaliationDurationCooldown.png"]= { ["x"]= 888, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/RageNotable3.png"]= { + ["Art/2DArt/SkillIcons/passives/RetaliationSkillDamage.png"]= { ["x"]= 925, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/RangedTotemCriticalStrikes.png"]= { + ["Art/2DArt/SkillIcons/passives/RetaliationSpellBlock.png"]= { + ["x"]= 962, + ["y"]= 856, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/RetaliationStun.png"]= { ["x"]= 0, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/RangedTotemOffensive.png"]= { + ["Art/2DArt/SkillIcons/passives/Retribution.png"]= { ["x"]= 37, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/RedHolyAttackNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Revelry.png"]= { ["x"]= 74, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Redemption.png"]= { + ["Art/2DArt/SkillIcons/passives/RighteousArmy.png"]= { ["x"]= 111, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ReducedManaNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Righteous Decree.png"]= { ["x"]= 148, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ReducedProjectileSpeedNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/RitualBloodLineNotable.png"]= { ["x"]= 185, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Robust.png"]= { ["x"]= 222, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Resourcefulness.png"]= { + ["Art/2DArt/SkillIcons/passives/Saboteur/BlindedAssult.png"]= { ["x"]= 259, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Retaliation.png"]= { + ["Art/2DArt/SkillIcons/passives/Saboteur/BombSpecialist.png"]= { ["x"]= 296, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/RetaliationAoE.png"]= { + ["Art/2DArt/SkillIcons/passives/Saboteur/ChainReaction.png"]= { ["x"]= 333, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/RetaliationAttackBlock.png"]= { + ["Art/2DArt/SkillIcons/passives/Saboteur/DemolitionSpecialist.png"]= { ["x"]= 370, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/RetaliationDurationCooldown.png"]= { + ["Art/2DArt/SkillIcons/passives/Saboteur/ExplosivesExpert.png"]= { ["x"]= 407, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/RetaliationSkillDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/Saboteur/LikeClockworkNotable.png"]= { ["x"]= 444, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/RetaliationSpellBlock.png"]= { + ["Art/2DArt/SkillIcons/passives/Saboteur/PerfectCrime.png"]= { ["x"]= 481, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/RetaliationStun.png"]= { + ["Art/2DArt/SkillIcons/passives/Saboteur/ShadowsDarknessBlind.png"]= { ["x"]= 518, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Retribution.png"]= { + ["Art/2DArt/SkillIcons/passives/Saboteur/ShrapnelSpecialist.png"]= { ["x"]= 555, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Revelry.png"]= { + ["Art/2DArt/SkillIcons/passives/SaboteurAnointNotable.png"]= { ["x"]= 592, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/RighteousArmy.png"]= { + ["Art/2DArt/SkillIcons/passives/Sanctuary.png"]= { ["x"]= 629, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Righteous Decree.png"]= { + ["Art/2DArt/SkillIcons/passives/SareshBloodlineNotable1.png"]= { ["x"]= 666, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/RitualBloodLineNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/SareshBloodlineNotable3.png"]= { ["x"]= 703, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Robust.png"]= { + ["Art/2DArt/SkillIcons/passives/SareshBloodlineNoteble2.png"]= { ["x"]= 740, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Saboteur/BlindedAssult.png"]= { + ["Art/2DArt/SkillIcons/passives/SavantPath.png"]= { ["x"]= 777, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Saboteur/BombSpecialist.png"]= { + ["Art/2DArt/SkillIcons/passives/SearingHeat.png"]= { ["x"]= 814, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Saboteur/ChainReaction.png"]= { + ["Art/2DArt/SkillIcons/passives/Sentinel.png"]= { ["x"]= 851, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Saboteur/DemolitionSpecialist.png"]= { + ["Art/2DArt/SkillIcons/passives/Shaper.png"]= { ["x"]= 888, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Saboteur/ExplosivesExpert.png"]= { + ["Art/2DArt/SkillIcons/passives/ShieldAttackDamage.png"]= { ["x"]= 925, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Saboteur/LikeClockworkNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/ShieldNotable.png"]= { + ["x"]= 962, + ["y"]= 893, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ShrugOff.png"]= { ["x"]= 0, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Saboteur/PerfectCrime.png"]= { + ["Art/2DArt/SkillIcons/passives/SkitteringRunes.png"]= { ["x"]= 37, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Saboteur/ShadowsDarknessBlind.png"]= { + ["Art/2DArt/SkillIcons/passives/Slayer/BaneOfLegends.png"]= { ["x"]= 74, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Saboteur/ShrapnelSpecialist.png"]= { + ["Art/2DArt/SkillIcons/passives/Slayer/BrutalFervor.png"]= { ["x"]= 111, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/SaboteurAnointNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Slayer/Charges.png"]= { ["x"]= 148, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Sanctuary.png"]= { + ["Art/2DArt/SkillIcons/passives/Slayer/CriticalAttacks.png"]= { ["x"]= 185, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/SareshBloodlineNotable1.png"]= { + ["Art/2DArt/SkillIcons/passives/Slayer/EndlessHunger.png"]= { ["x"]= 222, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/SareshBloodlineNotable3.png"]= { + ["Art/2DArt/SkillIcons/passives/Slayer/Headman.png"]= { ["x"]= 259, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/SareshBloodlineNoteble2.png"]= { + ["Art/2DArt/SkillIcons/passives/Slayer/Impact.png"]= { ["x"]= 296, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/SavantPath.png"]= { + ["Art/2DArt/SkillIcons/passives/SlayerAnointNotable.png"]= { ["x"]= 333, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/SearingHeat.png"]= { + ["Art/2DArt/SkillIcons/passives/SoulPact.png"]= { ["x"]= 370, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Sentinel.png"]= { + ["Art/2DArt/SkillIcons/passives/SoulSiphoning.png"]= { ["x"]= 407, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Shaper.png"]= { + ["Art/2DArt/SkillIcons/passives/SpellSuppressionLifeFlasksN.png"]= { ["x"]= 444, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ShieldAttackDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/SpellSupressionAndEnergyShieldNotable.png"]= { ["x"]= 481, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ShieldNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/SpellSupressionNotable1.png"]= { ["x"]= 518, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ShrugOff.png"]= { + ["Art/2DArt/SkillIcons/passives/SpellSupressionNotable2.png"]= { ["x"]= 555, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/SkitteringRunes.png"]= { + ["Art/2DArt/SkillIcons/passives/SpikedBulwark.png"]= { ["x"]= 592, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Slayer/BaneOfLegends.png"]= { + ["Art/2DArt/SkillIcons/passives/SpiritualAid.png"]= { ["x"]= 629, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Slayer/BrutalFervor.png"]= { + ["Art/2DArt/SkillIcons/passives/SpiritualCommand.png"]= { ["x"]= 666, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Slayer/Charges.png"]= { + ["Art/2DArt/SkillIcons/passives/StaffCrit.png"]= { ["x"]= 703, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Slayer/CriticalAttacks.png"]= { + ["Art/2DArt/SkillIcons/passives/StaffNotable.png"]= { ["x"]= 740, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Slayer/EndlessHunger.png"]= { + ["Art/2DArt/SkillIcons/passives/StaffNotable2.png"]= { ["x"]= 777, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Slayer/Headman.png"]= { + ["Art/2DArt/SkillIcons/passives/StaffNotable3.png"]= { ["x"]= 814, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Slayer/Impact.png"]= { + ["Art/2DArt/SkillIcons/passives/StanceNotableReservation.png"]= { ["x"]= 851, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/SlayerAnointNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/StanceNotableSwitching.png"]= { ["x"]= 888, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/SoulPact.png"]= { + ["Art/2DArt/SkillIcons/passives/Storm Weaver.png"]= { ["x"]= 925, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/SoulSiphoning.png"]= { + ["Art/2DArt/SkillIcons/passives/StrengthOfBlood.png"]= { + ["x"]= 962, + ["y"]= 930, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/StrikeSkillsNotable.png"]= { ["x"]= 0, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/SpellSuppressionLifeFlasksN.png"]= { + ["Art/2DArt/SkillIcons/passives/StunAvoidNotable.png"]= { ["x"]= 37, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/SpellSupressionAndEnergyShieldNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/StunMastery.png"]= { ["x"]= 74, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/SpellSupressionNotable1.png"]= { + ["Art/2DArt/SkillIcons/passives/SupremeProdigy.png"]= { ["x"]= 111, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/SpellSupressionNotable2.png"]= { + ["Art/2DArt/SkillIcons/passives/Survivalist.png"]= { ["x"]= 148, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/SpikedBulwark.png"]= { + ["Art/2DArt/SkillIcons/passives/SwordNotable1.png"]= { ["x"]= 185, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/SpiritualAid.png"]= { + ["Art/2DArt/SkillIcons/passives/TasteforBlood.png"]= { ["x"]= 222, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/SpiritualCommand.png"]= { + ["Art/2DArt/SkillIcons/passives/TempestBlast.png"]= { ["x"]= 259, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/StaffCrit.png"]= { + ["Art/2DArt/SkillIcons/passives/ThrillKiller.png"]= { ["x"]= 296, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/StaffNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/TinctureFlaskNotable1.png"]= { ["x"]= 333, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/StaffNotable2.png"]= { + ["Art/2DArt/SkillIcons/passives/TinctureManaNotable1.png"]= { ["x"]= 370, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/StaffNotable3.png"]= { + ["Art/2DArt/SkillIcons/passives/TinctureNotable1.png"]= { ["x"]= 407, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/StanceNotableReservation.png"]= { + ["Art/2DArt/SkillIcons/passives/TinctureNotable2.png"]= { ["x"]= 444, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/StanceNotableSwitching.png"]= { + ["Art/2DArt/SkillIcons/passives/TinctureNotable3.png"]= { ["x"]= 481, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Storm Weaver.png"]= { + ["Art/2DArt/SkillIcons/passives/TotemDmgNotable.png"]= { ["x"]= 518, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/StrengthOfBlood.png"]= { + ["Art/2DArt/SkillIcons/passives/Trap.png"]= { ["x"]= 555, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/StrikeSkillsNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Trap2.png"]= { ["x"]= 592, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/StunAvoidNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/TrapAndMineDmgNotable.png"]= { ["x"]= 629, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/StunMastery.png"]= { + ["Art/2DArt/SkillIcons/passives/Trickster/DamageOverTime.png"]= { ["x"]= 666, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/SupremeProdigy.png"]= { + ["Art/2DArt/SkillIcons/passives/Trickster/HeedfulRecovery.png"]= { ["x"]= 703, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Survivalist.png"]= { + ["Art/2DArt/SkillIcons/passives/Trickster/ImmuneToDoT.png"]= { ["x"]= 740, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/SwordNotable1.png"]= { + ["Art/2DArt/SkillIcons/passives/Trickster/OneStepAheadTrickster.png"]= { ["x"]= 777, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/TasteforBlood.png"]= { + ["Art/2DArt/SkillIcons/passives/Trickster/PolymathTrickster.png"]= { ["x"]= 814, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/TempestBlast.png"]= { + ["Art/2DArt/SkillIcons/passives/Trickster/SoulThiefTrickster.png"]= { ["x"]= 851, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ThrillKiller.png"]= { + ["Art/2DArt/SkillIcons/passives/Trickster/SupressionEnergyShieldTrickster.png"]= { ["x"]= 888, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/TinctureFlaskNotable1.png"]= { + ["Art/2DArt/SkillIcons/passives/Trickster/UncontrolledVigour.png"]= { ["x"]= 925, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/TinctureManaNotable1.png"]= { + ["Art/2DArt/SkillIcons/passives/TricksterAnointNotable.png"]= { + ["x"]= 962, + ["y"]= 967, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/TrueStriker.png"]= { ["x"]= 0, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/TinctureNotable1.png"]= { + ["Art/2DArt/SkillIcons/passives/TwoHandedMeleeDamage.png"]= { ["x"]= 37, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/TinctureNotable2.png"]= { + ["Art/2DArt/SkillIcons/passives/TwoHandedweaponImpalesNotable.png"]= { ["x"]= 74, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/TinctureNotable3.png"]= { + ["Art/2DArt/SkillIcons/passives/Unfaltering.png"]= { ["x"]= 111, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/TotemDmgNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Unrelenting.png"]= { ["x"]= 148, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Trap.png"]= { + ["Art/2DArt/SkillIcons/passives/Unwavering.png"]= { ["x"]= 185, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Trap2.png"]= { + ["Art/2DArt/SkillIcons/passives/UpwardsFiringProjectilesNotable.png"]= { ["x"]= 222, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/TrapAndMineDmgNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Vampirism.png"]= { ["x"]= 259, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Trickster/DamageOverTime.png"]= { + ["Art/2DArt/SkillIcons/passives/VoidBarrier.png"]= { ["x"]= 296, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Trickster/HeedfulRecovery.png"]= { + ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanBloodMagic1.png"]= { ["x"]= 333, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Trickster/ImmuneToDoT.png"]= { + ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanBloodMagic2.png"]= { ["x"]= 370, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Trickster/OneStepAheadTrickster.png"]= { + ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanBloodMagic3.png"]= { ["x"]= 407, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Trickster/PolymathTrickster.png"]= { + ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanCorpses.png"]= { ["x"]= 444, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Trickster/SoulThiefTrickster.png"]= { + ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanCurses2.png"]= { ["x"]= 481, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Trickster/SupressionEnergyShieldTrickster.png"]= { + ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanCursesChoice.png"]= { ["x"]= 518, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Trickster/UncontrolledVigour.png"]= { + ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanVoodooDoll.png"]= { ["x"]= 555, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/TricksterAnointNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/WandDamage.png"]= { ["x"]= 592, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/TrueStriker.png"]= { + ["Art/2DArt/SkillIcons/passives/WarcryBuffEffectNotable.png"]= { ["x"]= 629, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/TwoHandedMeleeDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/WarcryGainDamageNotable.png"]= { ["x"]= 666, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/TwoHandedweaponImpalesNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Warden/TinctureRangedNotable.png"]= { ["x"]= 703, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Unfaltering.png"]= { + ["Art/2DArt/SkillIcons/passives/Warden/WardenAllAilments.png"]= { ["x"]= 740, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Unrelenting.png"]= { + ["Art/2DArt/SkillIcons/passives/Warden/WardenBarkskin1.png"]= { ["x"]= 777, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Unwavering.png"]= { + ["Art/2DArt/SkillIcons/passives/Warden/WardenBarkskin2.png"]= { ["x"]= 814, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/UpwardsFiringProjectilesNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Warden/WardenColdAilments.png"]= { ["x"]= 851, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Vampirism.png"]= { + ["Art/2DArt/SkillIcons/passives/Warden/WardenFireAilments.png"]= { ["x"]= 888, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/VoidBarrier.png"]= { + ["Art/2DArt/SkillIcons/passives/Warden/WardenLightningAilments.png"]= { ["x"]= 925, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanBloodMagic1.png"]= { + ["Art/2DArt/SkillIcons/passives/Warden/WardenPrimitivism.png"]= { + ["x"]= 962, + ["y"]= 1004, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Warden/WardenSaps1.png"]= { ["x"]= 0, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanBloodMagic2.png"]= { + ["Art/2DArt/SkillIcons/passives/Warden/WardenSaps2.png"]= { ["x"]= 37, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanBloodMagic3.png"]= { + ["Art/2DArt/SkillIcons/passives/Warden/WardenSaps3.png"]= { ["x"]= 74, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanCorpses.png"]= { + ["Art/2DArt/SkillIcons/passives/Warden/WardenTracking.png"]= { ["x"]= 111, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanCurses2.png"]= { + ["Art/2DArt/SkillIcons/passives/WardenAnointNotable.png"]= { ["x"]= 148, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanCursesChoice.png"]= { + ["Art/2DArt/SkillIcons/passives/Warrior.png"]= { ["x"]= 185, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanVoodooDoll.png"]= { + ["Art/2DArt/SkillIcons/passives/WeaponElementalNotable.png"]= { ["x"]= 222, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/WandDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/WritteninBlood.png"]= { ["x"]= 259, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/WarcryBuffEffectNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/accuracydex.png"]= { ["x"]= 296, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/WarcryGainDamageNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/adderstouch.png"]= { ["x"]= 333, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Warden/TinctureRangedNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/ambidexterity.png"]= { ["x"]= 370, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Warden/WardenAllAilments.png"]= { + ["Art/2DArt/SkillIcons/passives/amplify.png"]= { ["x"]= 407, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Warden/WardenBarkskin1.png"]= { + ["Art/2DArt/SkillIcons/passives/animalspirit.png"]= { ["x"]= 444, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Warden/WardenBarkskin2.png"]= { + ["Art/2DArt/SkillIcons/passives/arcaneefficiency.png"]= { ["x"]= 481, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Warden/WardenColdAilments.png"]= { + ["Art/2DArt/SkillIcons/passives/arcane focus.png"]= { ["x"]= 518, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Warden/WardenFireAilments.png"]= { + ["Art/2DArt/SkillIcons/passives/arcanepotency.png"]= { ["x"]= 555, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Warden/WardenLightningAilments.png"]= { + ["Art/2DArt/SkillIcons/passives/arcaneradience.png"]= { ["x"]= 592, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Warden/WardenPrimitivism.png"]= { + ["Art/2DArt/SkillIcons/passives/armourmastery.png"]= { ["x"]= 629, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Warden/WardenSaps1.png"]= { + ["Art/2DArt/SkillIcons/passives/arsonist.png"]= { ["x"]= 666, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Warden/WardenSaps2.png"]= { + ["Art/2DArt/SkillIcons/passives/ashfrostandstorm.png"]= { ["x"]= 703, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Warden/WardenSaps3.png"]= { + ["Art/2DArt/SkillIcons/passives/attackspeedbow.png"]= { ["x"]= 740, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Warden/WardenTracking.png"]= { + ["Art/2DArt/SkillIcons/passives/authority.png"]= { ["x"]= 777, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/WardenAnointNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/barricade.png"]= { ["x"]= 814, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Warrior.png"]= { + ["Art/2DArt/SkillIcons/passives/berserking.png"]= { ["x"]= 851, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/WeaponElementalNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/bladebarrier.png"]= { ["x"]= 888, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/WritteninBlood.png"]= { + ["Art/2DArt/SkillIcons/passives/blademaster.png"]= { ["x"]= 925, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/accuracydex.png"]= { + ["Art/2DArt/SkillIcons/passives/blademistress.png"]= { + ["x"]= 962, + ["y"]= 1041, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/blastradius.png"]= { ["x"]= 0, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/adderstouch.png"]= { + ["Art/2DArt/SkillIcons/passives/bodysoul.png"]= { ["x"]= 37, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ambidexterity.png"]= { + ["Art/2DArt/SkillIcons/passives/borntofight.png"]= { ["x"]= 74, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/amplify.png"]= { + ["Art/2DArt/SkillIcons/passives/breathofrime.png"]= { ["x"]= 111, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/animalspirit.png"]= { + ["Art/2DArt/SkillIcons/passives/butchery.png"]= { ["x"]= 148, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/arcaneefficiency.png"]= { + ["Art/2DArt/SkillIcons/passives/castavoidinterruption.png"]= { ["x"]= 185, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/arcane focus.png"]= { + ["Art/2DArt/SkillIcons/passives/catalyse.png"]= { ["x"]= 222, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/arcanepotency.png"]= { + ["Art/2DArt/SkillIcons/passives/chargedex.png"]= { ["x"]= 259, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/arcaneradience.png"]= { + ["Art/2DArt/SkillIcons/passives/chargeint.png"]= { ["x"]= 296, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/armourmastery.png"]= { + ["Art/2DArt/SkillIcons/passives/chargestr.png"]= { ["x"]= 333, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/arsonist.png"]= { + ["Art/2DArt/SkillIcons/passives/cleverconstruction.png"]= { ["x"]= 370, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ashfrostandstorm.png"]= { + ["Art/2DArt/SkillIcons/passives/clustersLink2.png"]= { ["x"]= 407, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/attackspeedbow.png"]= { + ["Art/2DArt/SkillIcons/passives/clustersLink3.png"]= { ["x"]= 444, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/authority.png"]= { + ["Art/2DArt/SkillIcons/passives/criticalstrikemultiplier2.png"]= { ["x"]= 481, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/barricade.png"]= { + ["Art/2DArt/SkillIcons/passives/cruelblade.png"]= { ["x"]= 518, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/berserking.png"]= { + ["Art/2DArt/SkillIcons/passives/daggerpenetration.png"]= { ["x"]= 555, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/bladebarrier.png"]= { + ["Art/2DArt/SkillIcons/passives/deadlydraw.png"]= { ["x"]= 592, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/blademaster.png"]= { + ["Art/2DArt/SkillIcons/passives/deadlyprecision.png"]= { ["x"]= 629, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/blademistress.png"]= { + ["Art/2DArt/SkillIcons/passives/deathattunement.png"]= { ["x"]= 666, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/blastradius.png"]= { + ["Art/2DArt/SkillIcons/passives/deepthoughts.png"]= { ["x"]= 703, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/bodysoul.png"]= { + ["Art/2DArt/SkillIcons/passives/deepwisdom.png"]= { ["x"]= 740, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/borntofight.png"]= { + ["Art/2DArt/SkillIcons/passives/diamondskin.png"]= { ["x"]= 777, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/breathofrime.png"]= { + ["Art/2DArt/SkillIcons/passives/doomcast.png"]= { ["x"]= 814, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/butchery.png"]= { + ["Art/2DArt/SkillIcons/passives/eagleeye.png"]= { ["x"]= 851, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/castavoidinterruption.png"]= { + ["Art/2DArt/SkillIcons/passives/eagletalons.png"]= { ["x"]= 888, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/catalyse.png"]= { + ["Art/2DArt/SkillIcons/passives/elderpower.png"]= { ["x"]= 925, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/chargedex.png"]= { + ["Art/2DArt/SkillIcons/passives/elementalist.png"]= { + ["x"]= 962, + ["y"]= 1078, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/evasion.png"]= { ["x"]= 0, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/chargeint.png"]= { + ["Art/2DArt/SkillIcons/passives/executioner.png"]= { ["x"]= 37, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/chargestr.png"]= { + ["Art/2DArt/SkillIcons/passives/expeditiousmunitions.png"]= { ["x"]= 74, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/cleverconstruction.png"]= { + ["Art/2DArt/SkillIcons/passives/fellingtheweak.png"]= { ["x"]= 111, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/clustersLink2.png"]= { + ["Art/2DArt/SkillIcons/passives/fending.png"]= { ["x"]= 148, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/clustersLink3.png"]= { + ["Art/2DArt/SkillIcons/passives/finesse.png"]= { ["x"]= 185, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/criticalstrikemultiplier2.png"]= { + ["Art/2DArt/SkillIcons/passives/firedamage.png"]= { ["x"]= 222, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/cruelblade.png"]= { + ["Art/2DArt/SkillIcons/passives/flameborn.png"]= { ["x"]= 259, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/daggerpenetration.png"]= { + ["Art/2DArt/SkillIcons/passives/flaying.png"]= { ["x"]= 296, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/deadlydraw.png"]= { + ["Art/2DArt/SkillIcons/passives/foresight.png"]= { ["x"]= 333, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/deadlyprecision.png"]= { + ["Art/2DArt/SkillIcons/passives/frostborn.png"]= { ["x"]= 370, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/deathattunement.png"]= { + ["Art/2DArt/SkillIcons/passives/furybolts.png"]= { ["x"]= 407, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/deepthoughts.png"]= { + ["Art/2DArt/SkillIcons/passives/fussilade.png"]= { ["x"]= 444, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/deepwisdom.png"]= { + ["Art/2DArt/SkillIcons/passives/galvanichammer.png"]= { ["x"]= 481, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/diamondskin.png"]= { + ["Art/2DArt/SkillIcons/passives/golemsblood.png"]= { ["x"]= 518, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/doomcast.png"]= { + ["Art/2DArt/SkillIcons/passives/grace.png"]= { ["x"]= 555, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/eagleeye.png"]= { + ["Art/2DArt/SkillIcons/passives/graveexpectations.png"]= { ["x"]= 592, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/eagletalons.png"]= { + ["Art/2DArt/SkillIcons/passives/graveintentions.png"]= { ["x"]= 629, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/elderpower.png"]= { + ["Art/2DArt/SkillIcons/passives/gravepact.png"]= { ["x"]= 666, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/elementalist.png"]= { + ["Art/2DArt/SkillIcons/passives/hammerblows.png"]= { ["x"]= 703, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/evasion.png"]= { + ["Art/2DArt/SkillIcons/passives/hatchetmaster.png"]= { ["x"]= 740, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/executioner.png"]= { + ["Art/2DArt/SkillIcons/passives/heartofthegladiator.png"]= { ["x"]= 777, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/expeditiousmunitions.png"]= { + ["Art/2DArt/SkillIcons/passives/heartpierce.png"]= { ["x"]= 814, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/fellingtheweak.png"]= { + ["Art/2DArt/SkillIcons/passives/heartseeker.png"]= { ["x"]= 851, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/fending.png"]= { + ["Art/2DArt/SkillIcons/passives/heavydraw.png"]= { ["x"]= 888, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/finesse.png"]= { + ["Art/2DArt/SkillIcons/passives/hellfire.png"]= { ["x"]= 925, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/firedamage.png"]= { + ["Art/2DArt/SkillIcons/passives/highexplosives.png"]= { + ["x"]= 962, + ["y"]= 1115, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/icebite.png"]= { ["x"]= 0, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/flameborn.png"]= { + ["Art/2DArt/SkillIcons/passives/iceheart.png"]= { ["x"]= 37, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/flaying.png"]= { + ["Art/2DArt/SkillIcons/passives/increased armor.png"]= { ["x"]= 74, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/foresight.png"]= { + ["Art/2DArt/SkillIcons/passives/influence.png"]= { ["x"]= 111, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/frostborn.png"]= { + ["Art/2DArt/SkillIcons/passives/innerforce.png"]= { ["x"]= 148, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/furybolts.png"]= { + ["Art/2DArt/SkillIcons/passives/ironwoodtotem.png"]= { ["x"]= 185, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/fussilade.png"]= { + ["Art/2DArt/SkillIcons/passives/kingofthehill.png"]= { ["x"]= 222, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/galvanichammer.png"]= { + ["Art/2DArt/SkillIcons/passives/lavalash.png"]= { ["x"]= 259, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/golemsblood.png"]= { + ["Art/2DArt/SkillIcons/passives/leadership.png"]= { ["x"]= 296, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/grace.png"]= { + ["Art/2DArt/SkillIcons/passives/legendaryswordsman.png"]= { ["x"]= 333, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/graveexpectations.png"]= { + ["Art/2DArt/SkillIcons/passives/life1.png"]= { ["x"]= 370, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/graveintentions.png"]= { + ["Art/2DArt/SkillIcons/passives/lifeleech.png"]= { ["x"]= 407, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/gravepact.png"]= { + ["Art/2DArt/SkillIcons/passives/lifeleechimmunity.png"]= { ["x"]= 444, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/hammerblows.png"]= { + ["Art/2DArt/SkillIcons/passives/lightningint.png"]= { ["x"]= 481, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/hatchetmaster.png"]= { + ["Art/2DArt/SkillIcons/passives/lordofthedead.png"]= { ["x"]= 518, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/heartofthegladiator.png"]= { + ["Art/2DArt/SkillIcons/passives/macedmg.png"]= { ["x"]= 555, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/heartpierce.png"]= { + ["Art/2DArt/SkillIcons/passives/manaconduit.png"]= { ["x"]= 592, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/heartseeker.png"]= { + ["Art/2DArt/SkillIcons/passives/masterfletcher.png"]= { ["x"]= 629, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/heavydraw.png"]= { + ["Art/2DArt/SkillIcons/passives/mastersapper.png"]= { ["x"]= 666, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/hellfire.png"]= { + ["Art/2DArt/SkillIcons/passives/masterywand.png"]= { ["x"]= 703, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/highexplosives.png"]= { + ["Art/2DArt/SkillIcons/passives/melding.png"]= { ["x"]= 740, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/icebite.png"]= { + ["Art/2DArt/SkillIcons/passives/mentalacuity.png"]= { ["x"]= 777, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/iceheart.png"]= { + ["Art/2DArt/SkillIcons/passives/minddrinker.png"]= { ["x"]= 814, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/increased armor.png"]= { + ["Art/2DArt/SkillIcons/passives/minionblockchance.png"]= { ["x"]= 851, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/influence.png"]= { + ["Art/2DArt/SkillIcons/passives/newcolddamage.png"]= { ["x"]= 888, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/innerforce.png"]= { + ["Art/2DArt/SkillIcons/passives/newenergyshield.png"]= { ["x"]= 925, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ironwoodtotem.png"]= { + ["Art/2DArt/SkillIcons/passives/newevadepercentage.png"]= { + ["x"]= 962, + ["y"]= 1152, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/newincreasedcritical.png"]= { ["x"]= 0, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/kingofthehill.png"]= { + ["Art/2DArt/SkillIcons/passives/newnewattackspeed.png"]= { ["x"]= 37, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/lavalash.png"]= { + ["Art/2DArt/SkillIcons/passives/newtitanicmight.png"]= { ["x"]= 74, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/leadership.png"]= { + ["Art/2DArt/SkillIcons/passives/nightstalker.png"]= { ["x"]= 111, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/legendaryswordsman.png"]= { + ["Art/2DArt/SkillIcons/passives/nimbleness.png"]= { ["x"]= 148, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/life1.png"]= { + ["Art/2DArt/SkillIcons/passives/oxblood.png"]= { ["x"]= 185, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/lifeleech.png"]= { + ["Art/2DArt/SkillIcons/passives/perfectaim.png"]= { ["x"]= 222, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/lifeleechimmunity.png"]= { + ["Art/2DArt/SkillIcons/passives/plusdexterity.png"]= { ["x"]= 259, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/lightningint.png"]= { + ["Art/2DArt/SkillIcons/passives/plusintelligence.png"]= { ["x"]= 296, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/lordofthedead.png"]= { + ["Art/2DArt/SkillIcons/passives/plusstrength.png"]= { ["x"]= 333, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/macedmg.png"]= { + ["Art/2DArt/SkillIcons/passives/potencyofwill.png"]= { ["x"]= 370, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/manaconduit.png"]= { + ["Art/2DArt/SkillIcons/passives/precision.png"]= { ["x"]= 407, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/masterfletcher.png"]= { + ["Art/2DArt/SkillIcons/passives/pyromaniac.png"]= { ["x"]= 444, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/mastersapper.png"]= { + ["Art/2DArt/SkillIcons/passives/quickstep.png"]= { ["x"]= 481, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/masterywand.png"]= { + ["Art/2DArt/SkillIcons/passives/razorsedge.png"]= { ["x"]= 518, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/melding.png"]= { + ["Art/2DArt/SkillIcons/passives/reaver.png"]= { ["x"]= 555, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/mentalacuity.png"]= { + ["Art/2DArt/SkillIcons/passives/revengeofthehunted.png"]= { ["x"]= 592, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/minddrinker.png"]= { + ["Art/2DArt/SkillIcons/passives/saboteur.png"]= { ["x"]= 629, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/minionblockchance.png"]= { + ["Art/2DArt/SkillIcons/passives/savant.png"]= { ["x"]= 666, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/newcolddamage.png"]= { + ["Art/2DArt/SkillIcons/passives/scissorblades.png"]= { ["x"]= 703, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/newenergyshield.png"]= { + ["Art/2DArt/SkillIcons/passives/serpentstance.png"]= { ["x"]= 740, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/newevadepercentage.png"]= { + ["Art/2DArt/SkillIcons/passives/shamsnisticfury.png"]= { ["x"]= 777, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/newincreasedcritical.png"]= { + ["Art/2DArt/SkillIcons/passives/shieldwall.png"]= { ["x"]= 814, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/newnewattackspeed.png"]= { + ["Art/2DArt/SkillIcons/passives/skullcracking.png"]= { ["x"]= 851, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/newtitanicmight.png"]= { + ["Art/2DArt/SkillIcons/passives/soulsyphon.png"]= { ["x"]= 888, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/nightstalker.png"]= { + ["Art/2DArt/SkillIcons/passives/sovereignty.png"]= { ["x"]= 925, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/nimbleness.png"]= { + ["Art/2DArt/SkillIcons/passives/sparkingattacks.png"]= { + ["x"]= 962, + ["y"]= 1189, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/stabbingcomeback.png"]= { ["x"]= 0, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/oxblood.png"]= { + ["Art/2DArt/SkillIcons/passives/staticshield.png"]= { ["x"]= 37, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/perfectaim.png"]= { + ["Art/2DArt/SkillIcons/passives/stormborn.png"]= { ["x"]= 74, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/plusdexterity.png"]= { + ["Art/2DArt/SkillIcons/passives/strongarm.png"]= { ["x"]= 111, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/plusintelligence.png"]= { + ["Art/2DArt/SkillIcons/passives/stunmace.png"]= { ["x"]= 148, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/plusstrength.png"]= { + ["Art/2DArt/SkillIcons/passives/stunstaff.png"]= { ["x"]= 185, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/potencyofwill.png"]= { + ["Art/2DArt/SkillIcons/passives/swagger.png"]= { ["x"]= 222, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/precision.png"]= { + ["Art/2DArt/SkillIcons/passives/swashbuckler.png"]= { ["x"]= 259, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/pyromaniac.png"]= { + ["Art/2DArt/SkillIcons/passives/talonsofmurder.png"]= { ["x"]= 296, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/quickstep.png"]= { + ["Art/2DArt/SkillIcons/passives/thickskin.png"]= { ["x"]= 333, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/razorsedge.png"]= { + ["Art/2DArt/SkillIcons/passives/throatseeker.png"]= { ["x"]= 370, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/reaver.png"]= { + ["Art/2DArt/SkillIcons/passives/titanicmight.png"]= { ["x"]= 407, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/revengeofthehunted.png"]= { + ["Art/2DArt/SkillIcons/passives/totemandbrandrange.png"]= { ["x"]= 444, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/saboteur.png"]= { + ["Art/2DArt/SkillIcons/passives/totemicmastery.png"]= { ["x"]= 481, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/savant.png"]= { + ["Art/2DArt/SkillIcons/passives/totemiczeal.png"]= { ["x"]= 518, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/scissorblades.png"]= { + ["Art/2DArt/SkillIcons/passives/trapsradius.png"]= { ["x"]= 555, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/serpentstance.png"]= { + ["Art/2DArt/SkillIcons/passives/trollblood.png"]= { ["x"]= 592, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/shamsnisticfury.png"]= { + ["Art/2DArt/SkillIcons/passives/volitilemines.png"]= { ["x"]= 629, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/shieldwall.png"]= { + ["Art/2DArt/SkillIcons/passives/wandslingersprowess.png"]= { ["x"]= 666, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/skullcracking.png"]= { + ["Art/2DArt/SkillIcons/passives/whirlingstaff.png"]= { ["x"]= 703, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/soulsyphon.png"]= { + ["Art/2DArt/SkillIcons/passives/wreckingball.png"]= { ["x"]= 740, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/sovereignty.png"]= { + ["Art/2DArt/SkillIcons/passives/Ascendants/Assassin.png"]= { ["x"]= 777, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/sparkingattacks.png"]= { + ["Art/2DArt/SkillIcons/passives/Ascendants/Berserker.png"]= { ["x"]= 814, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/stabbingcomeback.png"]= { + ["Art/2DArt/SkillIcons/passives/Ascendants/Champion.png"]= { ["x"]= 851, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/staticshield.png"]= { + ["Art/2DArt/SkillIcons/passives/Ascendants/Chieftain.png"]= { ["x"]= 888, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/stormborn.png"]= { + ["Art/2DArt/SkillIcons/passives/Ascendants/Deadeye.png"]= { ["x"]= 925, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/strongarm.png"]= { + ["Art/2DArt/SkillIcons/passives/Ascendants/Elementalist.png"]= { + ["x"]= 962, + ["y"]= 1226, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/Gladiator.png"]= { ["x"]= 0, ["y"]= 1263, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/stunmace.png"]= { + ["Art/2DArt/SkillIcons/passives/Ascendants/Guardian.png"]= { ["x"]= 37, ["y"]= 1263, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/stunstaff.png"]= { + ["Art/2DArt/SkillIcons/passives/Ascendants/Hierophant.png"]= { ["x"]= 74, ["y"]= 1263, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/swagger.png"]= { + ["Art/2DArt/SkillIcons/passives/Ascendants/Inquisitor.png"]= { ["x"]= 111, ["y"]= 1263, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/swashbuckler.png"]= { + ["Art/2DArt/SkillIcons/passives/Ascendants/Juggernaut.png"]= { ["x"]= 148, ["y"]= 1263, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/talonsofmurder.png"]= { + ["Art/2DArt/SkillIcons/passives/Ascendants/Necromancer.png"]= { ["x"]= 185, ["y"]= 1263, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/thickskin.png"]= { + ["Art/2DArt/SkillIcons/passives/Ascendants/Occultist.png"]= { ["x"]= 222, ["y"]= 1263, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/throatseeker.png"]= { + ["Art/2DArt/SkillIcons/passives/Ascendants/Pathfinder.png"]= { ["x"]= 259, ["y"]= 1263, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/titanicmight.png"]= { + ["Art/2DArt/SkillIcons/passives/Ascendants/Raider.png"]= { ["x"]= 296, ["y"]= 1263, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/totemandbrandrange.png"]= { + ["Art/2DArt/SkillIcons/passives/Ascendants/Saboteur.png"]= { ["x"]= 333, ["y"]= 1263, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/totemicmastery.png"]= { + ["Art/2DArt/SkillIcons/passives/Ascendants/Slayer.png"]= { ["x"]= 370, ["y"]= 1263, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/totemiczeal.png"]= { + ["Art/2DArt/SkillIcons/passives/Ascendants/Trickster.png"]= { ["x"]= 407, ["y"]= 1263, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/trapsradius.png"]= { + ["Art/2DArt/SkillIcons/passives/Assassin/Ambush.png"]= { ["x"]= 444, ["y"]= 1263, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/trollblood.png"]= { + ["Art/2DArt/SkillIcons/passives/Chieftain/TawhoaForestsStrength.png"]= { ["x"]= 481, ["y"]= 1263, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/volitilemines.png"]= { - ["x"]= 518, - ["y"]= 1263, - ["w"]= 37, - ["h"]= 37 - }, - ["Art/2DArt/SkillIcons/passives/wandslingersprowess.png"]= { - ["x"]= 555, - ["y"]= 1263, - ["w"]= 37, - ["h"]= 37 - }, - ["Art/2DArt/SkillIcons/passives/whirlingstaff.png"]= { - ["x"]= 592, - ["y"]= 1263, - ["w"]= 37, - ["h"]= 37 - }, - ["Art/2DArt/SkillIcons/passives/wreckingball.png"]= { - ["x"]= 629, - ["y"]= 1263, - ["w"]= 37, - ["h"]= 37 - }, ["Art/2DArt/SkillIcons/passives/HinekoraPassiveIcon1.png"]= { - ["x"]= 666, + ["x"]= 518, ["y"]= 1263, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/HinekoraPassiveIcon2.png"]= { - ["x"]= 703, + ["x"]= 555, ["y"]= 1263, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/HinekoraPassiveIcon3.png"]= { - ["x"]= 740, + ["x"]= 592, ["y"]= 1263, ["w"]= 37, ["h"]= 37 @@ -6846,8 +6972,8 @@ return { } }, ["keystoneActive"]= { - ["filename"]= "https://web.poecdn.com/image/passive-skill/skills-3.jpg?24c5e3b9", - ["w"]= 962, + ["filename"]= "https://web.poecdn.com/image/passive-skill/skills-3.jpg?b1b66a3b", + ["w"]= 999, ["h"]= 1459, ["coords"]= { ["Art/2DArt/SkillIcons/passives/AnointOnlyKeystone.png"]= { @@ -6959,217 +7085,217 @@ return { ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/KeystoneEldritchBattery.png"]= { - ["x"]= 0, - ["y"]= 1353, + ["x"]= 936, + ["y"]= 1300, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/KeystoneElementalEquilibrium.png"]= { - ["x"]= 52, + ["x"]= 0, ["y"]= 1353, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/KeystoneElementalOverload.png"]= { - ["x"]= 104, + ["x"]= 52, ["y"]= 1353, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/KeystoneHexMaster.png"]= { - ["x"]= 156, + ["x"]= 104, ["y"]= 1353, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/KeystoneIronGrip.png"]= { - ["x"]= 208, + ["x"]= 156, ["y"]= 1353, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/KeystoneIronReflexes.png"]= { - ["x"]= 260, + ["x"]= 208, ["y"]= 1353, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/KeystoneIronWill.png"]= { - ["x"]= 312, + ["x"]= 260, ["y"]= 1353, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/KeystoneMinionInstability.png"]= { - ["x"]= 364, + ["x"]= 312, ["y"]= 1353, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/KeystoneNecromanticAegis.png"]= { - ["x"]= 416, + ["x"]= 364, ["y"]= 1353, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/KeystonePainAttunement.png"]= { - ["x"]= 468, + ["x"]= 416, ["y"]= 1353, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/KeystonePointBlankArcher.png"]= { - ["x"]= 520, + ["x"]= 468, ["y"]= 1353, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/KeystoneResoluteTechnique.png"]= { - ["x"]= 572, + ["x"]= 520, ["y"]= 1353, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/KeystoneUnwaveringStance.png"]= { - ["x"]= 624, + ["x"]= 572, ["y"]= 1353, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/Kineticism.png"]= { - ["x"]= 676, + ["x"]= 624, ["y"]= 1353, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/LoneMessenger.png"]= { - ["x"]= 728, + ["x"]= 676, ["y"]= 1353, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/MiracleMaker.png"]= { - ["x"]= 780, + ["x"]= 728, ["y"]= 1353, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/MomentofRespite.png"]= { - ["x"]= 832, + ["x"]= 780, ["y"]= 1353, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/NaturesPatience.png"]= { - ["x"]= 884, + ["x"]= 832, ["y"]= 1353, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/Occultist/EldrichBarrier.png"]= { - ["x"]= 0, - ["y"]= 1406, + ["x"]= 884, + ["y"]= 1353, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/Pitfighter.png"]= { - ["x"]= 52, - ["y"]= 1406, + ["x"]= 936, + ["y"]= 1353, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/PreciseTechnique.png"]= { - ["x"]= 104, + ["x"]= 0, ["y"]= 1406, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/Resilience.png"]= { - ["x"]= 156, + ["x"]= 52, ["y"]= 1406, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/RetaliationKeystone.png"]= { - ["x"]= 208, + ["x"]= 104, ["y"]= 1406, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/SacredBastionKeystone.png"]= { - ["x"]= 260, + ["x"]= 156, ["y"]= 1406, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/SecretOfAgony.png"]= { - ["x"]= 312, + ["x"]= 208, ["y"]= 1406, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/SupremeEgo.png"]= { - ["x"]= 364, + ["x"]= 260, ["y"]= 1406, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/TinctureKeystone1.png"]= { - ["x"]= 416, + ["x"]= 312, ["y"]= 1406, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/Trickster/AcrobaticWillpower.png"]= { - ["x"]= 468, + ["x"]= 364, ["y"]= 1406, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/VersatileCombatant.png"]= { - ["x"]= 520, + ["x"]= 416, ["y"]= 1406, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/VeteransAwareness.png"]= { - ["x"]= 572, + ["x"]= 468, ["y"]= 1406, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/WindDancer.png"]= { - ["x"]= 624, + ["x"]= 520, ["y"]= 1406, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/ghostreaver.png"]= { - ["x"]= 676, + ["x"]= 572, ["y"]= 1406, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/heroicspirit.png"]= { - ["x"]= 728, + ["x"]= 624, ["y"]= 1406, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/liferegentoenergyshield.png"]= { - ["x"]= 780, + ["x"]= 676, ["y"]= 1406, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/totemmax.png"]= { - ["x"]= 832, + ["x"]= 728, ["y"]= 1406, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/vaalpact.png"]= { - ["x"]= 884, + ["x"]= 780, ["y"]= 1406, ["w"]= 52, ["h"]= 53 @@ -7177,8 +7303,8 @@ return { } }, ["normalInactive"]= { - ["filename"]= "https://web.poecdn.com/image/passive-skill/skills-disabled-3.jpg?ac7492dd", - ["w"]= 962, + ["filename"]= "https://web.poecdn.com/image/passive-skill/skills-disabled-3.jpg?94caf4e2", + ["w"]= 999, ["h"]= 1459, ["coords"]= { ["Art/2DArt/SkillIcons/passives/2handeddamage.png"]= { @@ -7404,2539 +7530,2539 @@ return { ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/AtlasTrees/BestiaryNode1.png"]= { - ["x"]= 0, - ["y"]= 26, + ["x"]= 962, + ["y"]= 0, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/AtlasTrees/BestiaryNotable4.png"]= { - ["x"]= 26, + ["x"]= 0, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/AtlasTrees/BestiaryNotable5.png"]= { - ["x"]= 52, + ["x"]= 26, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/AtlasTrees/BestiaryNotable6.png"]= { - ["x"]= 78, + ["x"]= 52, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/AtlasTrees/BloodLineOlrothRune1.png"]= { - ["x"]= 104, + ["x"]= 78, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/AtlasTrees/BloodLineOlrothRune2.png"]= { - ["x"]= 130, + ["x"]= 104, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/AtlasTrees/BloodLineOlrothRune3.png"]= { - ["x"]= 156, + ["x"]= 130, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/AtlasTrees/BoldUndertaking.png"]= { - ["x"]= 182, + ["x"]= 156, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/AtlasTrees/BreachBossClaspedHands.png"]= { - ["x"]= 208, + ["x"]= 182, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/AtlasTrees/DeliriumNode1.png"]= { - ["x"]= 234, + ["x"]= 208, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/AtlasTrees/ExpeditionNode1.png"]= { - ["x"]= 260, + ["x"]= 234, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/AtlasTrees/HarbingerNotable3.png"]= { - ["x"]= 286, + ["x"]= 260, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/AtlasTrees/LichNode1.png"]= { - ["x"]= 312, + ["x"]= 286, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/AtlasTrees/LyciaNode1.png"]= { - ["x"]= 338, + ["x"]= 312, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/AtlasTrees/MorePrimalWispsSmall.png"]= { - ["x"]= 364, + ["x"]= 338, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/AtlasTrees/MoreVividWispsSmall.png"]= { - ["x"]= 390, + ["x"]= 364, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/AtlasTrees/MoreWildWispsSmall.png"]= { - ["x"]= 416, + ["x"]= 390, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/AtlasTrees/PerandusNotable2.png"]= { - ["x"]= 442, + ["x"]= 416, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/AtlasTrees/RitualBloodlineNode.png"]= { - ["x"]= 468, + ["x"]= 442, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/AtlasTrees/UltimatumNode1.png"]= { - ["x"]= 494, + ["x"]= 468, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/AtlasTrees/UltimatumNotable6.png"]= { - ["x"]= 520, + ["x"]= 494, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/AtlasTrees/UltimatumNotableMonsters1.png"]= { - ["x"]= 546, + ["x"]= 520, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/AtlasTrees/UltimatumNotableMonsters2.png"]= { - ["x"]= 572, + ["x"]= 546, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/AtlasTrees/UltimatumNotableStoneCircle.png"]= { - ["x"]= 598, + ["x"]= 572, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/AttackBlindNode.png"]= { - ["x"]= 624, + ["x"]= 598, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/AttackDamangeAndEvasionNotableNode.png"]= { - ["x"]= 650, + ["x"]= 624, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/AttackPoisonNode.png"]= { - ["x"]= 676, + ["x"]= 650, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/AuraEffectNode.png"]= { - ["x"]= 702, + ["x"]= 676, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/BannerAreaNode.png"]= { - ["x"]= 728, + ["x"]= 702, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/BannerDurationNode.png"]= { - ["x"]= 754, + ["x"]= 728, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/BannerEffectNode.png"]= { - ["x"]= 780, + ["x"]= 754, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/BannerResourceAreaNode.png"]= { - ["x"]= 806, + ["x"]= 780, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/BeltimberBladeNode.png"]= { - ["x"]= 832, + ["x"]= 806, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/Berserker/DmgAttackSpeed.png"]= { - ["x"]= 858, + ["x"]= 832, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/Berserker/DmgCrit.png"]= { - ["x"]= 884, + ["x"]= 858, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/Berserker/DmgLeech.png"]= { - ["x"]= 910, + ["x"]= 884, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/Berserker/DmgWarcry.png"]= { - ["x"]= 936, + ["x"]= 910, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/BleedAndPoisonMitigateNode.png"]= { - ["x"]= 0, - ["y"]= 52, + ["x"]= 936, + ["y"]= 26, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/BlockAttackDmgNode.png"]= { - ["x"]= 26, - ["y"]= 52, + ["x"]= 962, + ["y"]= 26, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/BlockSpellDmgNode.png"]= { - ["x"]= 52, + ["x"]= 0, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/Blood2.png"]= { - ["x"]= 78, + ["x"]= 26, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/BluntInstrument.png"]= { - ["x"]= 104, + ["x"]= 52, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/BowDamage.png"]= { - ["x"]= 130, + ["x"]= 78, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/Brand1.png"]= { - ["x"]= 156, + ["x"]= 104, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/Brand2.png"]= { - ["x"]= 182, + ["x"]= 130, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/BrandDmgNode.png"]= { - ["x"]= 208, + ["x"]= 156, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/BrassDomeNode.png"]= { - ["x"]= 234, + ["x"]= 182, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/Champion/AnEAttDamage.png"]= { - ["x"]= 260, + ["x"]= 208, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/Champion/AnEAura.png"]= { - ["x"]= 286, + ["x"]= 234, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/Champion/AnEFortify.png"]= { - ["x"]= 312, + ["x"]= 260, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/Champion/AnETaunt.png"]= { - ["x"]= 338, + ["x"]= 286, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/Champion/ImpalePassive.png"]= { - ["x"]= 364, + ["x"]= 312, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/ChaosDamage.png"]= { - ["x"]= 390, + ["x"]= 338, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/ChaosDamageOverTimeNode.png"]= { - ["x"]= 416, + ["x"]= 364, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/ChaosDamagenode.png"]= { - ["x"]= 442, + ["x"]= 390, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/ChaosResistNode.png"]= { - ["x"]= 468, + ["x"]= 416, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/ChaosResistNotable.png"]= { - ["x"]= 494, + ["x"]= 442, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/Chieftain/LifeRegenFireDamage.png"]= { - ["x"]= 520, + ["x"]= 468, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/Chieftain/LifeRegenStrength.png"]= { - ["x"]= 546, + ["x"]= 494, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/Chieftain/LifeRegenTotemPlacementSpeed.png"]= { - ["x"]= 572, + ["x"]= 520, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/ClawCritStrikeChanceNode.png"]= { - ["x"]= 598, + ["x"]= 546, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/ColdAndFireHybridNode.png"]= { - ["x"]= 624, + ["x"]= 572, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/ColdDamageOverTimeNode.png"]= { - ["x"]= 650, + ["x"]= 598, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/ColdDamagenode.png"]= { - ["x"]= 676, + ["x"]= 624, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/ColdResistNode.png"]= { - ["x"]= 702, + ["x"]= 650, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/CooldownWarcryNode1.png"]= { - ["x"]= 728, + ["x"]= 676, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/CorpseDamage.png"]= { - ["x"]= 754, + ["x"]= 702, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/CorpseLife.png"]= { - ["x"]= 780, + ["x"]= 728, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/CurseAreaofEffect.png"]= { - ["x"]= 806, + ["x"]= 754, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/CurseCastSpeed.png"]= { - ["x"]= 832, + ["x"]= 780, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/CurseDuration.png"]= { - ["x"]= 858, + ["x"]= 806, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/CurseEffectNode.png"]= { - ["x"]= 884, + ["x"]= 832, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/CurseManaCost.png"]= { - ["x"]= 910, + ["x"]= 858, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/CurseManaReservation.png"]= { - ["x"]= 936, + ["x"]= 884, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/CursemitigationclusterNode.png"]= { + ["x"]= 910, + ["y"]= 52, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/CybilsClawNode.png"]= { + ["x"]= 936, + ["y"]= 52, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/DamageOverTime.png"]= { + ["x"]= 962, + ["y"]= 52, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/DamageOverTimeNode.png"]= { ["x"]= 0, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/CybilsClawNode.png"]= { + ["Art/2DArt/SkillIcons/passives/DeadEye/ProjectileDamageAccuracy.png"]= { ["x"]= 26, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/DamageOverTime.png"]= { + ["Art/2DArt/SkillIcons/passives/DeadEye/ProjectileDamageAttackSpeed.png"]= { ["x"]= 52, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/DamageOverTimeNode.png"]= { + ["Art/2DArt/SkillIcons/passives/DivineFury.png"]= { ["x"]= 78, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/DeadEye/ProjectileDamageAccuracy.png"]= { + ["Art/2DArt/SkillIcons/passives/DivineWrath.png"]= { ["x"]= 104, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/DeadEye/ProjectileDamageAttackSpeed.png"]= { + ["Art/2DArt/SkillIcons/passives/DmgHeraldSkillsNode.png"]= { ["x"]= 130, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/DivineFury.png"]= { + ["Art/2DArt/SkillIcons/passives/DmgWhenChannelSkillsNode.png"]= { ["x"]= 156, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/DivineWrath.png"]= { + ["Art/2DArt/SkillIcons/passives/DodgeAtksNode.png"]= { ["x"]= 182, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/DmgHeraldSkillsNode.png"]= { + ["Art/2DArt/SkillIcons/passives/DualWieldNodeDefensive.png"]= { ["x"]= 208, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/DmgWhenChannelSkillsNode.png"]= { + ["Art/2DArt/SkillIcons/passives/DualWieldNodeOffensive.png"]= { ["x"]= 234, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/DodgeAtksNode.png"]= { + ["Art/2DArt/SkillIcons/passives/DurationofMinionsNode.png"]= { ["x"]= 260, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/DualWieldNodeDefensive.png"]= { + ["Art/2DArt/SkillIcons/passives/ElementalDamagenode.png"]= { ["x"]= 286, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/DualWieldNodeOffensive.png"]= { + ["Art/2DArt/SkillIcons/passives/ElementalResistance2.png"]= { ["x"]= 312, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/DurationofMinionsNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Elementalist/ElementalDamageAttackCasteSpeed.png"]= { ["x"]= 338, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/ElementalDamagenode.png"]= { + ["Art/2DArt/SkillIcons/passives/Elementalist/ElementalDamageElementalResistances.png"]= { ["x"]= 364, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/ElementalResistance2.png"]= { + ["Art/2DArt/SkillIcons/passives/Elementalist/ElementalDamageFreezeShockIgnite.png"]= { ["x"]= 390, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Elementalist/ElementalDamageAttackCasteSpeed.png"]= { + ["Art/2DArt/SkillIcons/passives/EmpoweredAttackWarcryNode1.png"]= { ["x"]= 416, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Elementalist/ElementalDamageElementalResistances.png"]= { + ["Art/2DArt/SkillIcons/passives/EnergyShieldNode.png"]= { ["x"]= 442, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Elementalist/ElementalDamageFreezeShockIgnite.png"]= { + ["Art/2DArt/SkillIcons/passives/EnergyshieldLeechPassivessmall.png"]= { ["x"]= 468, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/EmpoweredAttackWarcryNode1.png"]= { + ["Art/2DArt/SkillIcons/passives/EvasionNode.png"]= { ["x"]= 494, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/EnergyShieldNode.png"]= { + ["Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.png"]= { ["x"]= 520, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/EnergyshieldLeechPassivessmall.png"]= { + ["Art/2DArt/SkillIcons/passives/FireDamageOverTimeNode.png"]= { ["x"]= 546, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/EvasionNode.png"]= { + ["Art/2DArt/SkillIcons/passives/FireDamagenode.png"]= { ["x"]= 572, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.png"]= { + ["Art/2DArt/SkillIcons/passives/FireResistNode.png"]= { ["x"]= 598, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/FireDamageOverTimeNode.png"]= { + ["Art/2DArt/SkillIcons/passives/FlaskDurationnode.png"]= { ["x"]= 624, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/FireDamagenode.png"]= { + ["Art/2DArt/SkillIcons/passives/FortifyNode.png"]= { ["x"]= 650, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/FireResistNode.png"]= { + ["Art/2DArt/SkillIcons/passives/GenericWarcryNode1.png"]= { ["x"]= 676, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/FlaskDurationnode.png"]= { + ["Art/2DArt/SkillIcons/passives/GenericWarcryNode2.png"]= { ["x"]= 702, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/FortifyNode.png"]= { + ["Art/2DArt/SkillIcons/passives/GenericWarcryNode3.png"]= { ["x"]= 728, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/GenericWarcryNode1.png"]= { + ["Art/2DArt/SkillIcons/passives/Gladiator/GLADBlockChance.png"]= { ["x"]= 754, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/GenericWarcryNode2.png"]= { + ["Art/2DArt/SkillIcons/passives/Gladiator/GLADOneHand.png"]= { ["x"]= 780, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/GenericWarcryNode3.png"]= { + ["Art/2DArt/SkillIcons/passives/GolemsNode.png"]= { ["x"]= 806, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Gladiator/GLADBlockChance.png"]= { + ["Art/2DArt/SkillIcons/passives/GraceoftheGoddessNode.png"]= { ["x"]= 832, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Gladiator/GLADOneHand.png"]= { + ["Art/2DArt/SkillIcons/passives/GreenPhysicalDamageNode.png"]= { ["x"]= 858, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/GolemsNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Guardian/ArmourEnergyMeleeDamage.png"]= { ["x"]= 884, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/GraceoftheGoddessNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Guardian/ArmourEnergyShieldDefenseFromShields.png"]= { ["x"]= 910, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/GreenPhysicalDamageNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Guardian/ArmourEnergyShieldManaPool.png"]= { ["x"]= 936, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Guardian/ArmourEnergyMeleeDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/Guardian/ArmourEnergyShieldStaves.png"]= { + ["x"]= 962, + ["y"]= 78, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Guardian/GuardianHallowingFlameNode.png"]= { ["x"]= 0, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Guardian/ArmourEnergyShieldDefenseFromShields.png"]= { + ["Art/2DArt/SkillIcons/passives/Guardian/Minion Damage Armour and Energy Shield.png"]= { ["x"]= 26, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Guardian/ArmourEnergyShieldManaPool.png"]= { + ["Art/2DArt/SkillIcons/passives/Guardian/TimeOfNeed.png"]= { ["x"]= 52, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Guardian/ArmourEnergyShieldStaves.png"]= { + ["Art/2DArt/SkillIcons/passives/HalfColdHalfLightning.png"]= { ["x"]= 78, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Guardian/GuardianHallowingFlameNode.png"]= { + ["Art/2DArt/SkillIcons/passives/HeartbreakerNode.png"]= { ["x"]= 104, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Guardian/Minion Damage Armour and Energy Shield.png"]= { + ["Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.png"]= { ["x"]= 130, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Guardian/TimeOfNeed.png"]= { + ["Art/2DArt/SkillIcons/passives/HeraldDamageNotable.png"]= { ["x"]= 156, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/HalfColdHalfLightning.png"]= { + ["Art/2DArt/SkillIcons/passives/HeraldReservationNode.png"]= { ["x"]= 182, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/HeartbreakerNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Hierophant/ManaRegen.png"]= { ["x"]= 208, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.png"]= { + ["Art/2DArt/SkillIcons/passives/IgniteBleedNode.png"]= { ["x"]= 234, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/HeraldDamageNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/ImapleNode.png"]= { ["x"]= 260, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/HeraldReservationNode.png"]= { + ["Art/2DArt/SkillIcons/passives/ImpaleNode2.png"]= { ["x"]= 286, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Hierophant/ManaRegen.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreaseCritChanceNode.png"]= { ["x"]= 312, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/IgniteBleedNode.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreaseMinionLifeNode.png"]= { ["x"]= 338, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/ImapleNode.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreasedAttackDamageNode.png"]= { ["x"]= 364, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/ImpaleNode2.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreasedManaCostNode.png"]= { ["x"]= 390, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/IncreaseCritChanceNode.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreasedMaximumLifeNode.png"]= { ["x"]= 416, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/IncreaseMinionLifeNode.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreasedMinionDamageNode.png"]= { ["x"]= 442, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/IncreasedAttackDamageNode.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreasedNonDamageAilmentNode.png"]= { ["x"]= 468, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/IncreasedManaCostNode.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreasedProjectileSpeedNode.png"]= { ["x"]= 494, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/IncreasedMaximumLifeNode.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreasedSpellDamageNode.png"]= { ["x"]= 520, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/IncreasedMinionDamageNode.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreasedWarcryNode.png"]= { ["x"]= 546, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/IncreasedNonDamageAilmentNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageAttackCasteSpeed.png"]= { ["x"]= 572, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/IncreasedProjectileSpeedNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageAvoidElementalStatusEffects.png"]= { ["x"]= 598, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/IncreasedSpellDamageNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageCasteSpeed.png"]= { ["x"]= 624, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/IncreasedWarcryNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageElementalPenetration.png"]= { ["x"]= 650, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageAttackCasteSpeed.png"]= { + ["Art/2DArt/SkillIcons/passives/JacktheaxeNode.png"]= { ["x"]= 676, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageAvoidElementalStatusEffects.png"]= { + ["Art/2DArt/SkillIcons/passives/Juggernaut/IncreasedArmourAttackDamage.png"]= { ["x"]= 702, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageCasteSpeed.png"]= { + ["Art/2DArt/SkillIcons/passives/Juggernaut/IncreasedArmourAttackSpeed.png"]= { ["x"]= 728, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageElementalPenetration.png"]= { + ["Art/2DArt/SkillIcons/passives/Juggernaut/IncreasedArmourLifeRegeneration.png"]= { ["x"]= 754, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/JacktheaxeNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Juggernaut/IncreasedArmourMovementSpeed.png"]= { ["x"]= 780, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Juggernaut/IncreasedArmourAttackDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/Juggernaut/IncreasedArmourStunDuration.png"]= { ["x"]= 806, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Juggernaut/IncreasedArmourAttackSpeed.png"]= { + ["Art/2DArt/SkillIcons/passives/Juggernaut/JuggernautArmourNotable.png"]= { ["x"]= 832, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Juggernaut/IncreasedArmourLifeRegeneration.png"]= { + ["Art/2DArt/SkillIcons/passives/KeystoneArmourMaster.png"]= { ["x"]= 858, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Juggernaut/IncreasedArmourMovementSpeed.png"]= { + ["Art/2DArt/SkillIcons/passives/KiloavaShieldNode.png"]= { ["x"]= 884, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Juggernaut/IncreasedArmourStunDuration.png"]= { + ["Art/2DArt/SkillIcons/passives/KitavasHungerNode.png"]= { ["x"]= 910, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Juggernaut/JuggernautArmourNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/LifeAndEnergyShield.png"]= { ["x"]= 936, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/KeystoneArmourMaster.png"]= { + ["Art/2DArt/SkillIcons/passives/LifeAndReducedManaCost.png"]= { + ["x"]= 962, + ["y"]= 104, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/LifeManaFlasksrecoverynode.png"]= { ["x"]= 0, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/KiloavaShieldNode.png"]= { + ["Art/2DArt/SkillIcons/passives/LifeRecoupNode.png"]= { ["x"]= 26, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/KitavasHungerNode.png"]= { + ["Art/2DArt/SkillIcons/passives/LifeandCurses.png"]= { ["x"]= 52, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/LifeAndEnergyShield.png"]= { + ["Art/2DArt/SkillIcons/passives/LifeandMana.png"]= { ["x"]= 78, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/LifeAndReducedManaCost.png"]= { + ["Art/2DArt/SkillIcons/passives/LightningDamagenode.png"]= { ["x"]= 104, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/LifeManaFlasksrecoverynode.png"]= { + ["Art/2DArt/SkillIcons/passives/LightningResistNode.png"]= { ["x"]= 130, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/LifeRecoupNode.png"]= { + ["Art/2DArt/SkillIcons/passives/MaataSceptreNode.png"]= { ["x"]= 156, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/LifeandCurses.png"]= { + ["Art/2DArt/SkillIcons/passives/MaceElemental.png"]= { ["x"]= 182, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/LifeandMana.png"]= { + ["Art/2DArt/SkillIcons/passives/ManaAndEnergyShield.png"]= { ["x"]= 208, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/LightningDamagenode.png"]= { + ["Art/2DArt/SkillIcons/passives/ManaLeechThemedNode.png"]= { ["x"]= 234, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/LightningResistNode.png"]= { + ["Art/2DArt/SkillIcons/passives/ManaandCurses2.png"]= { ["x"]= 260, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/MaataSceptreNode.png"]= { + ["Art/2DArt/SkillIcons/passives/MarkNode.png"]= { ["x"]= 286, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/MaceElemental.png"]= { + ["Art/2DArt/SkillIcons/passives/MasteryBlank.png"]= { ["x"]= 312, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/ManaAndEnergyShield.png"]= { + ["Art/2DArt/SkillIcons/passives/MawOfConquestNode.png"]= { ["x"]= 338, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/ManaLeechThemedNode.png"]= { + ["Art/2DArt/SkillIcons/passives/MaxManaNode.png"]= { ["x"]= 364, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/ManaandCurses2.png"]= { + ["Art/2DArt/SkillIcons/passives/MeleeAoENode.png"]= { ["x"]= 390, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/MarkNode.png"]= { + ["Art/2DArt/SkillIcons/passives/MeleeCriticalStrikeChanceNode.png"]= { ["x"]= 416, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/MasteryBlank.png"]= { + ["Art/2DArt/SkillIcons/passives/MeleeCriticalStrikeMultiplierNode.png"]= { ["x"]= 442, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/MawOfConquestNode.png"]= { + ["Art/2DArt/SkillIcons/passives/MeleeFireNode.png"]= { ["x"]= 468, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/MaxManaNode.png"]= { + ["Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.png"]= { ["x"]= 494, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/MeleeAoENode.png"]= { + ["Art/2DArt/SkillIcons/passives/MineManaReservationNode.png"]= { ["x"]= 520, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/MeleeCriticalStrikeChanceNode.png"]= { + ["Art/2DArt/SkillIcons/passives/MinionAccuracyDamage.png"]= { ["x"]= 546, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/MeleeCriticalStrikeMultiplierNode.png"]= { + ["Art/2DArt/SkillIcons/passives/MinionChaosResistanceNode.png"]= { ["x"]= 572, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/MeleeFireNode.png"]= { + ["Art/2DArt/SkillIcons/passives/MinionDmgHeraldSkillsNode.png"]= { ["x"]= 598, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.png"]= { + ["Art/2DArt/SkillIcons/passives/MinionElementalResistancesNode.png"]= { ["x"]= 624, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/MineManaReservationNode.png"]= { + ["Art/2DArt/SkillIcons/passives/MovementSpeedandEvasionPassive.png"]= { ["x"]= 650, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/MinionAccuracyDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/MysticRefractorNode.png"]= { ["x"]= 676, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/MinionChaosResistanceNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Necromancer/CorpseConsumptionNode.png"]= { ["x"]= 702, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/MinionDmgHeraldSkillsNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Necromancer/IncreasedMinionDamageIncreasedMinionLife.png"]= { ["x"]= 728, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/MinionElementalResistancesNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Necromancer/IncreasedMinionDamageIncreasedSkillDuration.png"]= { ["x"]= 754, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/MovementSpeedandEvasionPassive.png"]= { + ["Art/2DArt/SkillIcons/passives/Necromancer/ManaNode.png"]= { ["x"]= 780, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/MysticRefractorNode.png"]= { + ["Art/2DArt/SkillIcons/passives/NodeAxeandSwordDamage.png"]= { ["x"]= 806, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Necromancer/CorpseConsumptionNode.png"]= { + ["Art/2DArt/SkillIcons/passives/NodeBowDamage.png"]= { ["x"]= 832, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Necromancer/IncreasedMinionDamageIncreasedMinionLife.png"]= { + ["Art/2DArt/SkillIcons/passives/NodeDaggerandClawDamage.png"]= { ["x"]= 858, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Necromancer/IncreasedMinionDamageIncreasedSkillDuration.png"]= { + ["Art/2DArt/SkillIcons/passives/NodeDualWieldingDamage.png"]= { ["x"]= 884, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Necromancer/ManaNode.png"]= { + ["Art/2DArt/SkillIcons/passives/NodeHoldingShieldDamage.png"]= { ["x"]= 910, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/NodeAxeandSwordDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/NodeMaceandStaffDamage.png"]= { ["x"]= 936, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/NodeBowDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/NodeTwoHandedMeleeDamage.png"]= { + ["x"]= 962, + ["y"]= 130, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/NodeWandDamage.png"]= { ["x"]= 0, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/NodeDaggerandClawDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/Occultist/EnergyShieldChaos.png"]= { ["x"]= 26, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/NodeDualWieldingDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/Occultist/EnergyShieldCold.png"]= { ["x"]= 52, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/NodeHoldingShieldDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/Occultist/IncreasedEnergyShieldAttackAndCastSpeed.png"]= { ["x"]= 78, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/NodeMaceandStaffDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/Occultist/IncreasedEnergyShieldCriticalStrikeChance.png"]= { ["x"]= 104, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/NodeTwoHandedMeleeDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/Occultist/IncreasedEnergyShieldManaReservation.png"]= { ["x"]= 130, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/NodeWandDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/Occultist/IncreasedEnergyShieldMaximumMana.png"]= { ["x"]= 156, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Occultist/EnergyShieldChaos.png"]= { + ["Art/2DArt/SkillIcons/passives/OneHandedPhysicalAndLeechNode.png"]= { ["x"]= 182, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Occultist/EnergyShieldCold.png"]= { + ["Art/2DArt/SkillIcons/passives/OneHandedPhysicalAndLeechNotable.png"]= { ["x"]= 208, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Occultist/IncreasedEnergyShieldAttackAndCastSpeed.png"]= { + ["Art/2DArt/SkillIcons/passives/PathFinder/FlaskEffectDamageOverTime.png"]= { ["x"]= 234, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Occultist/IncreasedEnergyShieldCriticalStrikeChance.png"]= { + ["Art/2DArt/SkillIcons/passives/PathFinder/FlaskEffectElementalResistance.png"]= { ["x"]= 260, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Occultist/IncreasedEnergyShieldManaReservation.png"]= { + ["Art/2DArt/SkillIcons/passives/PathFinder/FlaskEffectFlaskDuration.png"]= { ["x"]= 286, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Occultist/IncreasedEnergyShieldMaximumMana.png"]= { + ["Art/2DArt/SkillIcons/passives/PhysicalDamageNode.png"]= { ["x"]= 312, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/OneHandedPhysicalAndLeechNode.png"]= { + ["Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.png"]= { ["x"]= 338, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/OneHandedPhysicalAndLeechNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimenode3.png"]= { ["x"]= 364, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/PathFinder/FlaskEffectDamageOverTime.png"]= { + ["Art/2DArt/SkillIcons/passives/PhysicalDamagenode2.png"]= { ["x"]= 390, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/PathFinder/FlaskEffectElementalResistance.png"]= { + ["Art/2DArt/SkillIcons/passives/PhysicalandChaosDamage.png"]= { ["x"]= 416, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/PathFinder/FlaskEffectFlaskDuration.png"]= { + ["Art/2DArt/SkillIcons/passives/Poison.png"]= { ["x"]= 442, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/PhysicalDamageNode.png"]= { + ["Art/2DArt/SkillIcons/passives/PoisonSpellsNode.png"]= { ["x"]= 468, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Primalist/PrimalistNode.png"]= { ["x"]= 494, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimenode3.png"]= { + ["Art/2DArt/SkillIcons/passives/PrimordialCaneNode.png"]= { ["x"]= 520, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/PhysicalDamagenode2.png"]= { + ["Art/2DArt/SkillIcons/passives/ProjectileDmgNode.png"]= { ["x"]= 546, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/PhysicalandChaosDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/ProjectilesNode.png"]= { ["x"]= 572, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Poison.png"]= { + ["Art/2DArt/SkillIcons/passives/ProjectilesNode2.png"]= { ["x"]= 598, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/PoisonSpellsNode.png"]= { + ["Art/2DArt/SkillIcons/passives/ProsperosProtectionNode.png"]= { ["x"]= 624, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Primalist/PrimalistNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Rage.png"]= { ["x"]= 650, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/PrimordialCaneNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Raider/IncreasedElementalDamage.png"]= { ["x"]= 676, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/ProjectileDmgNode.png"]= { + ["Art/2DArt/SkillIcons/passives/RangedTotemAttackSpeed.png"]= { ["x"]= 702, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/ProjectilesNode.png"]= { + ["Art/2DArt/SkillIcons/passives/RangedTotemDamage.png"]= { ["x"]= 728, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/ProjectilesNode2.png"]= { + ["Art/2DArt/SkillIcons/passives/RedAttackSmallPassive.png"]= { ["x"]= 754, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/ProsperosProtectionNode.png"]= { + ["Art/2DArt/SkillIcons/passives/ReducedManaCostNode.png"]= { ["x"]= 780, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Rage.png"]= { + ["Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.png"]= { ["x"]= 806, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Raider/IncreasedElementalDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/RetaliationNode1.png"]= { ["x"]= 832, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/RangedTotemAttackSpeed.png"]= { + ["Art/2DArt/SkillIcons/passives/RetaliationNode2.png"]= { ["x"]= 858, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/RangedTotemDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/RetaliationNode3.png"]= { ["x"]= 884, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/RedAttackSmallPassive.png"]= { + ["Art/2DArt/SkillIcons/passives/RetaliationNode4.png"]= { ["x"]= 910, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/ReducedManaCostNode.png"]= { + ["Art/2DArt/SkillIcons/passives/RetaliationNode5.png"]= { ["x"]= 936, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Saboteur/ElementalDamageElementalResistance.png"]= { + ["x"]= 962, + ["y"]= 156, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Saboteur/ElementalDamageMines.png"]= { ["x"]= 0, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/RetaliationNode1.png"]= { + ["Art/2DArt/SkillIcons/passives/Saboteur/ElementalDamageMovementSpeed.png"]= { ["x"]= 26, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/RetaliationNode2.png"]= { + ["Art/2DArt/SkillIcons/passives/SareshBloodlineNode.png"]= { ["x"]= 52, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/RetaliationNode3.png"]= { + ["Art/2DArt/SkillIcons/passives/SharpandBrittle.png"]= { ["x"]= 78, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/RetaliationNode4.png"]= { + ["Art/2DArt/SkillIcons/passives/ShieldAttackDamage.png"]= { ["x"]= 104, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/RetaliationNode5.png"]= { + ["Art/2DArt/SkillIcons/passives/ShieldNodeOffensive.png"]= { ["x"]= 130, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Saboteur/ElementalDamageElementalResistance.png"]= { + ["Art/2DArt/SkillIcons/passives/Slayer/2HdmgAOE.png"]= { ["x"]= 156, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Saboteur/ElementalDamageMines.png"]= { + ["Art/2DArt/SkillIcons/passives/Slayer/2HdmgCritStrikeMultiplier.png"]= { ["x"]= 182, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Saboteur/ElementalDamageMovementSpeed.png"]= { + ["Art/2DArt/SkillIcons/passives/Slayer/2HdmgFrenzyEnduranceCharge.png"]= { ["x"]= 208, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/SareshBloodlineNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Slayer/2HdmgLeech.png"]= { ["x"]= 234, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/SharpandBrittle.png"]= { + ["Art/2DArt/SkillIcons/passives/Slayer/2HdmgSpeed.png"]= { ["x"]= 260, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/ShieldAttackDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/SpeedWarcryNode1.png"]= { ["x"]= 286, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/ShieldNodeOffensive.png"]= { + ["Art/2DArt/SkillIcons/passives/SpellMultiplyer2.png"]= { ["x"]= 312, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Slayer/2HdmgAOE.png"]= { + ["Art/2DArt/SkillIcons/passives/SpellSuppresionNode.png"]= { ["x"]= 338, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Slayer/2HdmgCritStrikeMultiplier.png"]= { + ["Art/2DArt/SkillIcons/passives/SpellSuppressionEnergyShield.png"]= { ["x"]= 364, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Slayer/2HdmgFrenzyEnduranceCharge.png"]= { + ["Art/2DArt/SkillIcons/passives/SpellSuppressionLifeFlasks.png"]= { ["x"]= 390, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Slayer/2HdmgLeech.png"]= { + ["Art/2DArt/SkillIcons/passives/StaffNodeDefensive.png"]= { ["x"]= 416, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Slayer/2HdmgSpeed.png"]= { + ["Art/2DArt/SkillIcons/passives/StaffNodeOffensive.png"]= { ["x"]= 442, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/SpeedWarcryNode1.png"]= { + ["Art/2DArt/SkillIcons/passives/StanceSmallPassive.png"]= { ["x"]= 468, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/SpellMultiplyer2.png"]= { + ["Art/2DArt/SkillIcons/passives/StancesNode.png"]= { ["x"]= 494, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/SpellSuppresionNode.png"]= { + ["Art/2DArt/SkillIcons/passives/StrikeRangeNode.png"]= { ["x"]= 520, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/SpellSuppressionEnergyShield.png"]= { + ["Art/2DArt/SkillIcons/passives/TearOfPurityNode.png"]= { ["x"]= 546, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/SpellSuppressionLifeFlasks.png"]= { + ["Art/2DArt/SkillIcons/passives/TerminusEstNode.png"]= { ["x"]= 572, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/StaffNodeDefensive.png"]= { + ["Art/2DArt/SkillIcons/passives/TheBurdenOfTruthNode.png"]= { ["x"]= 598, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/StaffNodeOffensive.png"]= { + ["Art/2DArt/SkillIcons/passives/TheBurdenofShadowsNode.png"]= { ["x"]= 624, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/StanceSmallPassive.png"]= { + ["Art/2DArt/SkillIcons/passives/TinctureFlaskNode1.png"]= { ["x"]= 650, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/StancesNode.png"]= { + ["Art/2DArt/SkillIcons/passives/TinctureNode1.png"]= { ["x"]= 676, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/StrikeRangeNode.png"]= { + ["Art/2DArt/SkillIcons/passives/TinctureNode2.png"]= { ["x"]= 702, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/TearOfPurityNode.png"]= { + ["Art/2DArt/SkillIcons/passives/TinctureNode3.png"]= { ["x"]= 728, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/TerminusEstNode.png"]= { + ["Art/2DArt/SkillIcons/passives/TotemDmgNode.png"]= { ["x"]= 754, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/TheBurdenOfTruthNode.png"]= { + ["Art/2DArt/SkillIcons/passives/TrapAndMineDmgNode.png"]= { ["x"]= 780, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/TheBurdenofShadowsNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Trickster/DefensiveNodeTrickster.png"]= { ["x"]= 806, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/TinctureFlaskNode1.png"]= { + ["Art/2DArt/SkillIcons/passives/Trickster/OffensiveNodeTrickster.png"]= { ["x"]= 832, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/TinctureNode1.png"]= { + ["Art/2DArt/SkillIcons/passives/VersusoBootsNode.png"]= { ["x"]= 858, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/TinctureNode2.png"]= { + ["Art/2DArt/SkillIcons/passives/VictariosJacketNode.png"]= { ["x"]= 884, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/TinctureNode3.png"]= { + ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanCurses2.png"]= { ["x"]= 910, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/TotemDmgNode.png"]= { + ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanNode.png"]= { ["x"]= 936, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/TrapAndMineDmgNode.png"]= { + ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanSpecialCurse1.png"]= { + ["x"]= 962, + ["y"]= 182, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanSpecialCurse2.png"]= { ["x"]= 0, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Trickster/DefensiveNodeTrickster.png"]= { + ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanSpecialCurse3.png"]= { ["x"]= 26, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Trickster/OffensiveNodeTrickster.png"]= { + ["Art/2DArt/SkillIcons/passives/WandCritical.png"]= { ["x"]= 52, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/VersusoBootsNode.png"]= { + ["Art/2DArt/SkillIcons/passives/WandSpeedAccuracyNode.png"]= { ["x"]= 78, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/VictariosJacketNode.png"]= { + ["Art/2DArt/SkillIcons/passives/WarCryCooldown.png"]= { ["x"]= 104, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanCurses2.png"]= { + ["Art/2DArt/SkillIcons/passives/WarcryBuffEffectNotable.png"]= { ["x"]= 130, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Warden/SpellSuppressionEvasion.png"]= { ["x"]= 156, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanSpecialCurse1.png"]= { + ["Art/2DArt/SkillIcons/passives/Warden/TincturesNode.png"]= { ["x"]= 182, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanSpecialCurse2.png"]= { + ["Art/2DArt/SkillIcons/passives/Warden/WardenNode.png"]= { ["x"]= 208, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanSpecialCurse3.png"]= { + ["Art/2DArt/SkillIcons/passives/Warden/WardenTracking.png"]= { ["x"]= 234, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/WandCritical.png"]= { + ["Art/2DArt/SkillIcons/passives/WarpedTimepieceNode.png"]= { ["x"]= 260, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/WandSpeedAccuracyNode.png"]= { + ["Art/2DArt/SkillIcons/passives/WidowhailBowNode.png"]= { ["x"]= 286, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/WarCryCooldown.png"]= { + ["Art/2DArt/SkillIcons/passives/accuracy.png"]= { ["x"]= 312, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/WarcryBuffEffectNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/accuracy2h.png"]= { ["x"]= 338, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Warden/SpellSuppressionEvasion.png"]= { + ["Art/2DArt/SkillIcons/passives/accuracydex.png"]= { ["x"]= 364, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Warden/TincturesNode.png"]= { + ["Art/2DArt/SkillIcons/passives/accuracysword.png"]= { ["x"]= 390, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Warden/WardenNode.png"]= { + ["Art/2DArt/SkillIcons/passives/arcaneradience.png"]= { ["x"]= 416, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Warden/WardenTracking.png"]= { + ["Art/2DArt/SkillIcons/passives/areaofeffect.png"]= { ["x"]= 442, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/WarpedTimepieceNode.png"]= { + ["Art/2DArt/SkillIcons/passives/attackspeed.png"]= { ["x"]= 468, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/WidowhailBowNode.png"]= { + ["Art/2DArt/SkillIcons/passives/attackspeed2h.png"]= { ["x"]= 494, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/accuracy.png"]= { + ["Art/2DArt/SkillIcons/passives/attackspeedaxe.png"]= { ["x"]= 520, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/accuracy2h.png"]= { + ["Art/2DArt/SkillIcons/passives/attackspeedbow.png"]= { ["x"]= 546, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/accuracydex.png"]= { + ["Art/2DArt/SkillIcons/passives/attackspeedclaw.png"]= { ["x"]= 572, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/accuracysword.png"]= { + ["Art/2DArt/SkillIcons/passives/attackspeeddagger.png"]= { ["x"]= 598, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/arcaneradience.png"]= { + ["Art/2DArt/SkillIcons/passives/attackspeeddual.png"]= { ["x"]= 624, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/areaofeffect.png"]= { + ["Art/2DArt/SkillIcons/passives/attackspeedmace.png"]= { ["x"]= 650, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/attackspeed.png"]= { + ["Art/2DArt/SkillIcons/passives/attackspeedsworddex.png"]= { ["x"]= 676, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/attackspeed2h.png"]= { + ["Art/2DArt/SkillIcons/passives/auraareaofeffect.png"]= { ["x"]= 702, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/attackspeedaxe.png"]= { + ["Art/2DArt/SkillIcons/passives/auraeffect.png"]= { ["x"]= 728, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/attackspeedbow.png"]= { + ["Art/2DArt/SkillIcons/passives/avoidburning.png"]= { ["x"]= 754, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/attackspeedclaw.png"]= { + ["Art/2DArt/SkillIcons/passives/avoidchilling.png"]= { ["x"]= 780, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/attackspeeddagger.png"]= { + ["Art/2DArt/SkillIcons/passives/axedmgspeed.png"]= { ["x"]= 806, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/attackspeeddual.png"]= { + ["Art/2DArt/SkillIcons/passives/blankDex.png"]= { ["x"]= 832, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/attackspeedmace.png"]= { + ["Art/2DArt/SkillIcons/passives/blankInt.png"]= { ["x"]= 858, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/attackspeedsworddex.png"]= { + ["Art/2DArt/SkillIcons/passives/blankStr.png"]= { ["x"]= 884, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/auraareaofeffect.png"]= { + ["Art/2DArt/SkillIcons/passives/blastradius.png"]= { ["x"]= 910, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/auraeffect.png"]= { + ["Art/2DArt/SkillIcons/passives/blockstaff.png"]= { ["x"]= 936, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/avoidburning.png"]= { + ["Art/2DArt/SkillIcons/passives/blockstr.png"]= { + ["x"]= 962, + ["y"]= 208, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/castavoidinterruption.png"]= { ["x"]= 0, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/avoidchilling.png"]= { + ["Art/2DArt/SkillIcons/passives/castspeed.png"]= { ["x"]= 26, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/axedmgspeed.png"]= { + ["Art/2DArt/SkillIcons/passives/chargedex.png"]= { ["x"]= 52, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/blankDex.png"]= { + ["Art/2DArt/SkillIcons/passives/chargeint.png"]= { ["x"]= 78, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/blankInt.png"]= { + ["Art/2DArt/SkillIcons/passives/chargestr.png"]= { ["x"]= 104, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/blankStr.png"]= { + ["Art/2DArt/SkillIcons/passives/clawmasterydex.png"]= { ["x"]= 130, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/blastradius.png"]= { + ["Art/2DArt/SkillIcons/passives/clustersLinknode1.png"]= { ["x"]= 156, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/blockstaff.png"]= { + ["Art/2DArt/SkillIcons/passives/clustersLinknode2.png"]= { ["x"]= 182, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/blockstr.png"]= { + ["Art/2DArt/SkillIcons/passives/colddamage.png"]= { ["x"]= 208, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/castavoidinterruption.png"]= { + ["Art/2DArt/SkillIcons/passives/coldresist.png"]= { ["x"]= 234, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/castspeed.png"]= { + ["Art/2DArt/SkillIcons/passives/criticalbow.png"]= { ["x"]= 260, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/chargedex.png"]= { + ["Art/2DArt/SkillIcons/passives/criticalclaw.png"]= { ["x"]= 286, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/chargeint.png"]= { + ["Art/2DArt/SkillIcons/passives/criticaldaggerdex.png"]= { ["x"]= 312, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/chargestr.png"]= { + ["Art/2DArt/SkillIcons/passives/criticaldaggerint.png"]= { ["x"]= 338, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/clawmasterydex.png"]= { + ["Art/2DArt/SkillIcons/passives/criticalstrikechance.png"]= { ["x"]= 364, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/clustersLinknode1.png"]= { + ["Art/2DArt/SkillIcons/passives/criticalstrikechance2.png"]= { ["x"]= 390, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/clustersLinknode2.png"]= { + ["Art/2DArt/SkillIcons/passives/criticalstrikemultiplier.png"]= { ["x"]= 416, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/colddamage.png"]= { + ["Art/2DArt/SkillIcons/passives/criticalstrikemultiplier2.png"]= { ["x"]= 442, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/coldresist.png"]= { + ["Art/2DArt/SkillIcons/passives/critstrchnc.png"]= { ["x"]= 468, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/criticalbow.png"]= { + ["Art/2DArt/SkillIcons/passives/crystalskin.png"]= { ["x"]= 494, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/criticalclaw.png"]= { + ["Art/2DArt/SkillIcons/passives/damage.png"]= { ["x"]= 520, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/criticaldaggerdex.png"]= { + ["Art/2DArt/SkillIcons/passives/damage_blue.png"]= { ["x"]= 546, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/criticaldaggerint.png"]= { + ["Art/2DArt/SkillIcons/passives/damageaxe.png"]= { ["x"]= 572, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/criticalstrikechance.png"]= { + ["Art/2DArt/SkillIcons/passives/damagedualwield.png"]= { ["x"]= 598, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/criticalstrikechance2.png"]= { + ["Art/2DArt/SkillIcons/passives/damagedualwieldgreen.png"]= { ["x"]= 624, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/criticalstrikemultiplier.png"]= { + ["Art/2DArt/SkillIcons/passives/damagemelee.png"]= { ["x"]= 650, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/criticalstrikemultiplier2.png"]= { + ["Art/2DArt/SkillIcons/passives/damagespells.png"]= { ["x"]= 676, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/critstrchnc.png"]= { + ["Art/2DArt/SkillIcons/passives/damagestaff.png"]= { ["x"]= 702, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/crystalskin.png"]= { + ["Art/2DArt/SkillIcons/passives/damagesword.png"]= { ["x"]= 728, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/damage.png"]= { + ["Art/2DArt/SkillIcons/passives/dmgreduction.png"]= { ["x"]= 754, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/damage_blue.png"]= { + ["Art/2DArt/SkillIcons/passives/dualwieldaccuracy.png"]= { ["x"]= 780, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/damageaxe.png"]= { + ["Art/2DArt/SkillIcons/passives/dualwieldblock.png"]= { ["x"]= 806, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/damagedualwield.png"]= { + ["Art/2DArt/SkillIcons/passives/elementaldamage.png"]= { ["x"]= 832, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/damagedualwieldgreen.png"]= { + ["Art/2DArt/SkillIcons/passives/energyshield.png"]= { ["x"]= 858, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/damagemelee.png"]= { + ["Art/2DArt/SkillIcons/passives/evade.png"]= { ["x"]= 884, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/damagespells.png"]= { + ["Art/2DArt/SkillIcons/passives/evadepercentage.png"]= { ["x"]= 910, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/damagestaff.png"]= { + ["Art/2DArt/SkillIcons/passives/evasion.png"]= { ["x"]= 936, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/damagesword.png"]= { + ["Art/2DArt/SkillIcons/passives/firedamage.png"]= { + ["x"]= 962, + ["y"]= 234, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/firedamageint.png"]= { ["x"]= 0, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/dmgreduction.png"]= { + ["Art/2DArt/SkillIcons/passives/firedamagestr.png"]= { ["x"]= 26, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/dualwieldaccuracy.png"]= { + ["Art/2DArt/SkillIcons/passives/fireresist.png"]= { ["x"]= 52, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/dualwieldblock.png"]= { + ["Art/2DArt/SkillIcons/passives/flaskdex.png"]= { ["x"]= 78, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/elementaldamage.png"]= { + ["Art/2DArt/SkillIcons/passives/flaskint.png"]= { ["x"]= 104, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/energyshield.png"]= { + ["Art/2DArt/SkillIcons/passives/flaskstr.png"]= { ["x"]= 130, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/evade.png"]= { + ["Art/2DArt/SkillIcons/passives/increased armor.png"]= { ["x"]= 156, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/evadepercentage.png"]= { + ["Art/2DArt/SkillIcons/passives/increasedarmorandlife.png"]= { ["x"]= 182, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/evasion.png"]= { + ["Art/2DArt/SkillIcons/passives/increasedrunspeeddex.png"]= { ["x"]= 208, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/firedamage.png"]= { + ["Art/2DArt/SkillIcons/passives/innerforce.png"]= { ["x"]= 234, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/firedamageint.png"]= { + ["Art/2DArt/SkillIcons/passives/knockback.png"]= { ["x"]= 260, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/firedamagestr.png"]= { + ["Art/2DArt/SkillIcons/passives/life1.png"]= { ["x"]= 286, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/fireresist.png"]= { + ["Art/2DArt/SkillIcons/passives/lifegainpertarget.png"]= { ["x"]= 312, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/flaskdex.png"]= { + ["Art/2DArt/SkillIcons/passives/lifeleech.png"]= { ["x"]= 338, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/flaskint.png"]= { + ["Art/2DArt/SkillIcons/passives/lifemana.png"]= { ["x"]= 364, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/flaskstr.png"]= { + ["Art/2DArt/SkillIcons/passives/lifepercentage.png"]= { ["x"]= 390, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/increased armor.png"]= { + ["Art/2DArt/SkillIcons/passives/lightningdex.png"]= { ["x"]= 416, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/increasedarmorandlife.png"]= { + ["Art/2DArt/SkillIcons/passives/lightningint.png"]= { ["x"]= 442, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/increasedrunspeeddex.png"]= { + ["Art/2DArt/SkillIcons/passives/lightningstr.png"]= { ["x"]= 468, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/innerforce.png"]= { + ["Art/2DArt/SkillIcons/passives/macecritdmgspeed.png"]= { ["x"]= 494, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/knockback.png"]= { + ["Art/2DArt/SkillIcons/passives/macedmg.png"]= { ["x"]= 520, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/life1.png"]= { + ["Art/2DArt/SkillIcons/passives/mana.png"]= { ["x"]= 546, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/lifegainpertarget.png"]= { + ["Art/2DArt/SkillIcons/passives/manaregeneration.png"]= { ["x"]= 572, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/lifeleech.png"]= { + ["Art/2DArt/SkillIcons/passives/manareservationreduction.png"]= { ["x"]= 598, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/lifemana.png"]= { + ["Art/2DArt/SkillIcons/passives/manastr.png"]= { ["x"]= 624, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/lifepercentage.png"]= { + ["Art/2DArt/SkillIcons/passives/masterydaggerdex.png"]= { ["x"]= 650, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/lightningdex.png"]= { + ["Art/2DArt/SkillIcons/passives/masterysword.png"]= { ["x"]= 676, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/lightningint.png"]= { + ["Art/2DArt/SkillIcons/passives/masterywand.png"]= { ["x"]= 702, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/lightningstr.png"]= { + ["Art/2DArt/SkillIcons/passives/meleeattackspeed.png"]= { ["x"]= 728, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/macecritdmgspeed.png"]= { + ["Art/2DArt/SkillIcons/passives/minionattackspeed.png"]= { ["x"]= 754, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/macedmg.png"]= { + ["Art/2DArt/SkillIcons/passives/minionblockchance.png"]= { ["x"]= 780, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/mana.png"]= { + ["Art/2DArt/SkillIcons/passives/miniondamage.png"]= { ["x"]= 806, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/manaregeneration.png"]= { + ["Art/2DArt/SkillIcons/passives/miniondamageBlue.png"]= { ["x"]= 832, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/manareservationreduction.png"]= { + ["Art/2DArt/SkillIcons/passives/minionlife.png"]= { ["x"]= 858, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/manastr.png"]= { + ["Art/2DArt/SkillIcons/passives/onehanddamage.png"]= { ["x"]= 884, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/masterydaggerdex.png"]= { + ["Art/2DArt/SkillIcons/passives/onehandspeed.png"]= { ["x"]= 910, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/masterysword.png"]= { + ["Art/2DArt/SkillIcons/passives/plusdexterity.png"]= { ["x"]= 936, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/masterywand.png"]= { + ["Art/2DArt/SkillIcons/passives/plusintelligence.png"]= { + ["x"]= 962, + ["y"]= 260, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/plusintelligencedexterity.png"]= { ["x"]= 0, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/meleeattackspeed.png"]= { + ["Art/2DArt/SkillIcons/passives/plusstrength.png"]= { ["x"]= 26, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/minionattackspeed.png"]= { + ["Art/2DArt/SkillIcons/passives/plusstrengthdexterity.png"]= { ["x"]= 52, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/minionblockchance.png"]= { + ["Art/2DArt/SkillIcons/passives/plusstrengthintelligence.png"]= { ["x"]= 78, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/miniondamage.png"]= { + ["Art/2DArt/SkillIcons/passives/projectilespeed.png"]= { ["x"]= 104, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/miniondamageBlue.png"]= { + ["Art/2DArt/SkillIcons/passives/shieldblock.png"]= { ["x"]= 130, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/minionlife.png"]= { + ["Art/2DArt/SkillIcons/passives/skillduration.png"]= { ["x"]= 156, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/onehanddamage.png"]= { + ["Art/2DArt/SkillIcons/passives/spellcritical.png"]= { ["x"]= 182, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/onehandspeed.png"]= { + ["Art/2DArt/SkillIcons/passives/staffaccuracy.png"]= { ["x"]= 208, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/plusdexterity.png"]= { + ["Art/2DArt/SkillIcons/passives/staffspeed.png"]= { ["x"]= 234, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/plusintelligence.png"]= { + ["Art/2DArt/SkillIcons/passives/stundex.png"]= { ["x"]= 260, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/plusintelligencedexterity.png"]= { + ["Art/2DArt/SkillIcons/passives/stunmace.png"]= { ["x"]= 286, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/plusstrength.png"]= { + ["Art/2DArt/SkillIcons/passives/stunstr.png"]= { ["x"]= 312, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/plusstrengthdexterity.png"]= { + ["Art/2DArt/SkillIcons/passives/tempdex.png"]= { ["x"]= 338, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/plusstrengthintelligence.png"]= { + ["Art/2DArt/SkillIcons/passives/tempint.png"]= { ["x"]= 364, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/projectilespeed.png"]= { + ["Art/2DArt/SkillIcons/passives/totemandbrandattackspeed.png"]= { ["x"]= 390, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/shieldblock.png"]= { + ["Art/2DArt/SkillIcons/passives/totemandbranddamage.png"]= { ["x"]= 416, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/skillduration.png"]= { + ["Art/2DArt/SkillIcons/passives/totemandbrandrange.png"]= { ["x"]= 442, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/spellcritical.png"]= { + ["Art/2DArt/SkillIcons/passives/totemattackspeed.png"]= { ["x"]= 468, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/staffaccuracy.png"]= { + ["Art/2DArt/SkillIcons/passives/totemlife.png"]= { ["x"]= 494, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/staffspeed.png"]= { + ["Art/2DArt/SkillIcons/passives/trapcriticalstrike.png"]= { ["x"]= 520, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/stundex.png"]= { + ["Art/2DArt/SkillIcons/passives/trapdamage.png"]= { ["x"]= 546, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/stunmace.png"]= { + ["Art/2DArt/SkillIcons/passives/trapsduration.png"]= { ["x"]= 572, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/stunstr.png"]= { + ["Art/2DArt/SkillIcons/passives/trapsradius.png"]= { ["x"]= 598, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/tempdex.png"]= { + ["Art/2DArt/SkillIcons/passives/trapsspeed.png"]= { ["x"]= 624, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/tempint.png"]= { + ["Art/2DArt/SkillIcons/passives/weaponelementaldamagepercentage.png"]= { ["x"]= 650, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/totemandbrandattackspeed.png"]= { + ["Art/2DArt/SkillIcons/ArohonguiTribeSkill.png"]= { ["x"]= 676, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/totemandbranddamage.png"]= { + ["Art/2DArt/SkillIcons/HinekoraTribeSkill.png"]= { ["x"]= 702, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/totemandbrandrange.png"]= { + ["Art/2DArt/SkillIcons/KitavaTribeSkill.png"]= { ["x"]= 728, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/totemattackspeed.png"]= { + ["Art/2DArt/SkillIcons/NgamahuTribeSkill.png"]= { ["x"]= 754, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/totemlife.png"]= { + ["Art/2DArt/SkillIcons/RamakoTribeSkill.png"]= { ["x"]= 780, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/trapcriticalstrike.png"]= { + ["Art/2DArt/SkillIcons/RongokuraiTribeSkill.png"]= { ["x"]= 806, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/trapdamage.png"]= { + ["Art/2DArt/SkillIcons/TasalioTribeSkill.png"]= { ["x"]= 832, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/trapsduration.png"]= { + ["Art/2DArt/SkillIcons/TawhoaTribeSkill.png"]= { ["x"]= 858, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/trapsradius.png"]= { + ["Art/2DArt/SkillIcons/TukohamaTribeSkill.png"]= { ["x"]= 884, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/trapsspeed.png"]= { + ["Art/2DArt/SkillIcons/ValakoTribeSkill.png"]= { ["x"]= 910, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/weaponelementaldamagepercentage.png"]= { + ["Art/2DArt/SkillIcons/passives/HinekoraPassiveIcon1.png"]= { ["x"]= 936, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/ArohonguiTribeSkill.png"]= { - ["x"]= 0, - ["y"]= 312, - ["w"]= 26, - ["h"]= 26 - }, - ["Art/2DArt/SkillIcons/HinekoraTribeSkill.png"]= { - ["x"]= 26, - ["y"]= 312, - ["w"]= 26, - ["h"]= 26 - }, - ["Art/2DArt/SkillIcons/KitavaTribeSkill.png"]= { - ["x"]= 52, - ["y"]= 312, - ["w"]= 26, - ["h"]= 26 - }, - ["Art/2DArt/SkillIcons/NgamahuTribeSkill.png"]= { - ["x"]= 78, - ["y"]= 312, - ["w"]= 26, - ["h"]= 26 - }, - ["Art/2DArt/SkillIcons/RamakoTribeSkill.png"]= { - ["x"]= 104, - ["y"]= 312, - ["w"]= 26, - ["h"]= 26 - }, - ["Art/2DArt/SkillIcons/RongokuraiTribeSkill.png"]= { - ["x"]= 130, - ["y"]= 312, - ["w"]= 26, - ["h"]= 26 - }, - ["Art/2DArt/SkillIcons/TasalioTribeSkill.png"]= { - ["x"]= 156, - ["y"]= 312, - ["w"]= 26, - ["h"]= 26 - }, - ["Art/2DArt/SkillIcons/TawhoaTribeSkill.png"]= { - ["x"]= 182, - ["y"]= 312, - ["w"]= 26, - ["h"]= 26 - }, - ["Art/2DArt/SkillIcons/TukohamaTribeSkill.png"]= { - ["x"]= 208, - ["y"]= 312, - ["w"]= 26, - ["h"]= 26 - }, - ["Art/2DArt/SkillIcons/ValakoTribeSkill.png"]= { - ["x"]= 234, - ["y"]= 312, - ["w"]= 26, - ["h"]= 26 - }, - ["Art/2DArt/SkillIcons/passives/HinekoraPassiveIcon1.png"]= { - ["x"]= 260, - ["y"]= 312, - ["w"]= 26, - ["h"]= 26 - }, ["Art/2DArt/SkillIcons/passives/HinekoraPassiveIcon2.png"]= { - ["x"]= 286, - ["y"]= 312, + ["x"]= 962, + ["y"]= 286, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/HinekoraPassiveIcon3.png"]= { - ["x"]= 312, + ["x"]= 0, ["y"]= 312, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/SkillscostingLifenode.png"]= { - ["x"]= 338, + ["x"]= 26, ["y"]= 312, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/accuracyint.png"]= { - ["x"]= 364, + ["x"]= 52, ["y"]= 312, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/totemandbrandlife.png"]= { - ["x"]= 390, + ["x"]= 78, ["y"]= 312, ["w"]= 26, ["h"]= 26 @@ -9944,8 +10070,8 @@ return { } }, ["notableInactive"]= { - ["filename"]= "https://web.poecdn.com/image/passive-skill/skills-disabled-3.jpg?ac7492dd", - ["w"]= 962, + ["filename"]= "https://web.poecdn.com/image/passive-skill/skills-disabled-3.jpg?94caf4e2", + ["w"]= 999, ["h"]= 1459, ["coords"]= { ["Art/2DArt/SkillIcons/passives/2handeddamage.png"]= { @@ -10105,3871 +10231,3997 @@ return { ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/Assassin/DeadlyInfusion.png"]= { + ["x"]= 962, + ["y"]= 338, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Assassin/Elusive.png"]= { ["x"]= 0, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Assassin/Elusive.png"]= { + ["Art/2DArt/SkillIcons/passives/Assassin/NoxiousStrike.png"]= { ["x"]= 37, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Assassin/NoxiousStrike.png"]= { + ["Art/2DArt/SkillIcons/passives/Assassin/ToxicDelivery.png"]= { ["x"]= 74, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Assassin/ToxicDelivery.png"]= { + ["Art/2DArt/SkillIcons/passives/Assassin/UnstableInfusion.png"]= { ["x"]= 111, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Assassin/UnstableInfusion.png"]= { + ["Art/2DArt/SkillIcons/passives/AssassinAnointNotable.png"]= { ["x"]= 148, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/AssassinAnointNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/AtlasTrees/AulBloodlineNotable.png"]= { ["x"]= 185, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/AtlasTrees/AulBloodlineNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/AtlasTrees/BestiaryNotable4.png"]= { ["x"]= 222, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/AtlasTrees/BestiaryNotable4.png"]= { + ["Art/2DArt/SkillIcons/passives/AtlasTrees/BloodLineOlrothNotable.png"]= { ["x"]= 259, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/AtlasTrees/BloodLineOlrothNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/AtlasTrees/BoldUndertaking.png"]= { ["x"]= 296, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/AtlasTrees/BoldUndertaking.png"]= { + ["Art/2DArt/SkillIcons/passives/AtlasTrees/BreachNotable4.png"]= { ["x"]= 333, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/AtlasTrees/BreachNotable4.png"]= { + ["Art/2DArt/SkillIcons/passives/AtlasTrees/DeliriumNotable1.png"]= { ["x"]= 370, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/AtlasTrees/DeliriumNotable1.png"]= { + ["Art/2DArt/SkillIcons/passives/AtlasTrees/FarrulNotable1.png"]= { ["x"]= 407, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/AtlasTrees/FarrulNotable1.png"]= { + ["Art/2DArt/SkillIcons/passives/AtlasTrees/HarbingerNode1.png"]= { ["x"]= 444, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/AtlasTrees/HarbingerNode1.png"]= { + ["Art/2DArt/SkillIcons/passives/AtlasTrees/LyciaNotable1.png"]= { ["x"]= 481, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/AtlasTrees/LyciaNotable1.png"]= { + ["Art/2DArt/SkillIcons/passives/AtlasTrees/MorePrimalWisps.png"]= { ["x"]= 518, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/AtlasTrees/MorePrimalWisps.png"]= { + ["Art/2DArt/SkillIcons/passives/AtlasTrees/MoreVividWisps.png"]= { ["x"]= 555, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/AtlasTrees/MoreVividWisps.png"]= { + ["Art/2DArt/SkillIcons/passives/AtlasTrees/MoreWildWisps.png"]= { ["x"]= 592, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/AtlasTrees/MoreWildWisps.png"]= { + ["Art/2DArt/SkillIcons/passives/AtlasTrees/TempestNotable1.png"]= { ["x"]= 629, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/AtlasTrees/TempestNotable1.png"]= { + ["Art/2DArt/SkillIcons/passives/AtlasTrees/UltimatumNotable3.png"]= { ["x"]= 666, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/AtlasTrees/UltimatumNotable3.png"]= { + ["Art/2DArt/SkillIcons/passives/AtlasTrees/UltimatumNotable4.png"]= { ["x"]= 703, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/AtlasTrees/UltimatumNotable4.png"]= { + ["Art/2DArt/SkillIcons/passives/AttackBlindNotable.png"]= { ["x"]= 740, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/AttackBlindNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/AttackDamangeAndEvasionNotableIcon.png"]= { ["x"]= 777, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/AttackDamangeAndEvasionNotableIcon.png"]= { + ["Art/2DArt/SkillIcons/passives/AttackPoisonNotable.png"]= { ["x"]= 814, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/AttackPoisonNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/AuraEffectNotable.png"]= { ["x"]= 851, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/AuraEffectNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/AuraReservationNotable.png"]= { ["x"]= 888, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/AuraReservationNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/AvataroftheHunt2.png"]= { ["x"]= 925, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/AvataroftheHunt2.png"]= { + ["Art/2DArt/SkillIcons/passives/AvoidInterruptionFromCastingNotable.png"]= { + ["x"]= 962, + ["y"]= 375, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/AxeNotable1.png"]= { ["x"]= 0, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/AvoidInterruptionFromCastingNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/AxeNotable2.png"]= { ["x"]= 37, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/AxeNotable1.png"]= { + ["Art/2DArt/SkillIcons/passives/AxeandSwordDamage.png"]= { ["x"]= 74, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/AxeNotable2.png"]= { + ["Art/2DArt/SkillIcons/passives/AxesandAttackSpeed.png"]= { ["x"]= 111, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/AxeandSwordDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/BannerAreaNotable.png"]= { ["x"]= 148, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/AxesandAttackSpeed.png"]= { + ["Art/2DArt/SkillIcons/passives/BannerDurationNotable.png"]= { ["x"]= 185, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/BannerAreaNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/BannerEffectNotable.png"]= { ["x"]= 222, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/BannerDurationNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/BannerResourceAreaNotable.png"]= { ["x"]= 259, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/BannerEffectNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/BannersNotable.png"]= { ["x"]= 296, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/BannerResourceAreaNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/BarragingProjectilesNotable.png"]= { ["x"]= 333, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/BannersNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/BattleRouse.png"]= { ["x"]= 370, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/BarragingProjectilesNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Berserker/AspectOfCarnage.png"]= { ["x"]= 407, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/BattleRouse.png"]= { + ["Art/2DArt/SkillIcons/passives/Berserker/Blitz.png"]= { ["x"]= 444, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Berserker/AspectOfCarnage.png"]= { + ["Art/2DArt/SkillIcons/passives/Berserker/CloakedAgony.png"]= { ["x"]= 481, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Berserker/Blitz.png"]= { + ["Art/2DArt/SkillIcons/passives/Berserker/CombatFrenzy.png"]= { ["x"]= 518, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Berserker/CloakedAgony.png"]= { + ["Art/2DArt/SkillIcons/passives/Berserker/DefyPain.png"]= { ["x"]= 555, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Berserker/CombatFrenzy.png"]= { + ["Art/2DArt/SkillIcons/passives/Berserker/RiteOfRuin.png"]= { ["x"]= 592, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Berserker/DefyPain.png"]= { + ["Art/2DArt/SkillIcons/passives/Berserker/WarBringer.png"]= { ["x"]= 629, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Berserker/RiteOfRuin.png"]= { + ["Art/2DArt/SkillIcons/passives/BeserkerAnointNotable.png"]= { ["x"]= 666, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Berserker/WarBringer.png"]= { + ["Art/2DArt/SkillIcons/passives/BladeBarrierNotable.png"]= { ["x"]= 703, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/BeserkerAnointNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/BleedPoison.png"]= { ["x"]= 740, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/BladeBarrierNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/BleedPoisonMitigateNotable.png"]= { ["x"]= 777, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/BleedPoison.png"]= { + ["Art/2DArt/SkillIcons/passives/BleedingNotable1.png"]= { ["x"]= 814, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/BleedPoisonMitigateNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/BleedingNotable2.png"]= { ["x"]= 851, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/BleedingNotable1.png"]= { + ["Art/2DArt/SkillIcons/passives/BlockAttackDmgNotable.png"]= { ["x"]= 888, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/BleedingNotable2.png"]= { + ["Art/2DArt/SkillIcons/passives/BlockSpellDmgNotable.png"]= { ["x"]= 925, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/BlockAttackDmgNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Blood2.png"]= { + ["x"]= 962, + ["y"]= 412, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/BloodPact.png"]= { ["x"]= 0, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/BlockSpellDmgNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/BloodSiphon.png"]= { ["x"]= 37, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Blood2.png"]= { + ["Art/2DArt/SkillIcons/passives/BloodyBludgeon.png"]= { ["x"]= 74, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/BloodPact.png"]= { + ["Art/2DArt/SkillIcons/passives/Boomerang.png"]= { ["x"]= 111, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/BloodSiphon.png"]= { + ["Art/2DArt/SkillIcons/passives/BowDamage.png"]= { ["x"]= 148, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/BloodyBludgeon.png"]= { + ["Art/2DArt/SkillIcons/passives/Brand2.png"]= { ["x"]= 185, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Boomerang.png"]= { + ["Art/2DArt/SkillIcons/passives/Brand4.png"]= { ["x"]= 222, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/BowDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/BrandDmgNotable.png"]= { ["x"]= 259, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Brand2.png"]= { + ["Art/2DArt/SkillIcons/passives/BreathofFlames2.png"]= { ["x"]= 296, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Brand4.png"]= { + ["Art/2DArt/SkillIcons/passives/BreathofLightening2.png"]= { ["x"]= 333, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/BrandDmgNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/BreathofRime2.png"]= { ["x"]= 370, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/BreathofFlames2.png"]= { + ["Art/2DArt/SkillIcons/passives/ByTheBlade.png"]= { ["x"]= 407, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/BreathofLightening2.png"]= { + ["Art/2DArt/SkillIcons/passives/CelestialPunishment.png"]= { ["x"]= 444, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/BreathofRime2.png"]= { + ["Art/2DArt/SkillIcons/passives/ChainingProjectiles.png"]= { ["x"]= 481, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ByTheBlade.png"]= { + ["Art/2DArt/SkillIcons/passives/Champion.png"]= { ["x"]= 518, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/CelestialPunishment.png"]= { + ["Art/2DArt/SkillIcons/passives/Champion/FirstStrikeLastFall.png"]= { ["x"]= 555, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ChainingProjectiles.png"]= { + ["Art/2DArt/SkillIcons/passives/Champion/Fortitude.png"]= { ["x"]= 592, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Champion.png"]= { + ["Art/2DArt/SkillIcons/passives/Champion/ImpalePassiveNotable.png"]= { ["x"]= 629, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Champion/FirstStrikeLastFall.png"]= { + ["Art/2DArt/SkillIcons/passives/Champion/Inpirational.png"]= { ["x"]= 666, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Champion/Fortitude.png"]= { + ["Art/2DArt/SkillIcons/passives/Champion/Unstopable.png"]= { ["x"]= 703, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Champion/ImpalePassiveNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Champion/WorthyCauses.png"]= { ["x"]= 740, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Champion/Inpirational.png"]= { + ["Art/2DArt/SkillIcons/passives/Champion/WorthyFoe.png"]= { ["x"]= 777, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Champion/Unstopable.png"]= { + ["Art/2DArt/SkillIcons/passives/ChampionAnointNotable.png"]= { ["x"]= 814, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Champion/WorthyCauses.png"]= { + ["Art/2DArt/SkillIcons/passives/ChaosDamage2.png"]= { ["x"]= 851, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Champion/WorthyFoe.png"]= { + ["Art/2DArt/SkillIcons/passives/ChaosDamageOverTimeNotable.png"]= { ["x"]= 888, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ChampionAnointNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/ChaosDamageOverTimeNotable2.png"]= { ["x"]= 925, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ChaosDamage2.png"]= { + ["Art/2DArt/SkillIcons/passives/ChaosResistNotable.png"]= { + ["x"]= 962, + ["y"]= 449, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ChaoticPotential.png"]= { ["x"]= 0, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ChaosDamageOverTimeNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/CheiftainAnointNotable.png"]= { ["x"]= 37, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ChaosDamageOverTimeNotable2.png"]= { + ["Art/2DArt/SkillIcons/passives/Chieftain/ArohunguiMoonsPresenceWarcry.png"]= { ["x"]= 74, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ChaosResistNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Chieftain/HinekoraDeathsFury.png"]= { ["x"]= 111, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ChaoticPotential.png"]= { + ["Art/2DArt/SkillIcons/passives/Chieftain/NgamahuFlamesAdvance.png"]= { ["x"]= 148, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/CheiftainAnointNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Chieftain/RamakoSunsLight.png"]= { ["x"]= 185, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Chieftain/ArohunguiMoonsPresenceWarcry.png"]= { + ["Art/2DArt/SkillIcons/passives/Chieftain/TasalioCleansingWater.png"]= { ["x"]= 222, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Chieftain/HinekoraDeathsFury.png"]= { + ["Art/2DArt/SkillIcons/passives/Chieftain/TukomahaWarsHerald.png"]= { ["x"]= 259, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Chieftain/NgamahuFlamesAdvance.png"]= { + ["Art/2DArt/SkillIcons/passives/Chieftain/ValakoStormsEmbrace.png"]= { ["x"]= 296, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Chieftain/RamakoSunsLight.png"]= { + ["Art/2DArt/SkillIcons/passives/ChillThemedNotable.png"]= { ["x"]= 333, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Chieftain/TasalioCleansingWater.png"]= { + ["Art/2DArt/SkillIcons/passives/ClawNotable1.png"]= { ["x"]= 370, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Chieftain/TukomahaWarsHerald.png"]= { + ["Art/2DArt/SkillIcons/passives/ClawNotable2.png"]= { ["x"]= 407, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Chieftain/ValakoStormsEmbrace.png"]= { + ["Art/2DArt/SkillIcons/passives/ClawsOfTheMagpie.png"]= { ["x"]= 444, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ChillThemedNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/CleverThief.png"]= { ["x"]= 481, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ClawNotable1.png"]= { + ["Art/2DArt/SkillIcons/passives/ColdAndFireHybridNotable.png"]= { ["x"]= 518, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ClawNotable2.png"]= { + ["Art/2DArt/SkillIcons/passives/ColdDamageEnemyNotable.png"]= { ["x"]= 555, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ClawsOfTheMagpie.png"]= { + ["Art/2DArt/SkillIcons/passives/ColdDamageOverTimeNotable.png"]= { ["x"]= 592, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/CleverThief.png"]= { + ["Art/2DArt/SkillIcons/passives/ColdResistNotable.png"]= { ["x"]= 629, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ColdAndFireHybridNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/ColdWeaponDmg.png"]= { ["x"]= 666, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ColdDamageEnemyNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/ColdheartedCalculation2.png"]= { ["x"]= 703, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ColdDamageOverTimeNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/CombatFocusNotable.png"]= { ["x"]= 740, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ColdResistNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/CombatStamina.png"]= { ["x"]= 777, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ColdWeaponDmg.png"]= { + ["Art/2DArt/SkillIcons/passives/CommandofSteel.png"]= { ["x"]= 814, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ColdheartedCalculation2.png"]= { + ["Art/2DArt/SkillIcons/passives/Constitution.png"]= { ["x"]= 851, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/CombatFocusNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Coordination.png"]= { ["x"]= 888, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/CombatStamina.png"]= { + ["Art/2DArt/SkillIcons/passives/CorpsesNotable.png"]= { ["x"]= 925, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/CommandofSteel.png"]= { + ["Art/2DArt/SkillIcons/passives/Corruption.png"]= { + ["x"]= 962, + ["y"]= 486, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/CritStrikeBleedingNotable.png"]= { ["x"]= 0, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Constitution.png"]= { + ["Art/2DArt/SkillIcons/passives/CurseAreaOfEffectNotable.png"]= { ["x"]= 37, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Coordination.png"]= { + ["Art/2DArt/SkillIcons/passives/CurseEffectNotable.png"]= { ["x"]= 74, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/CorpsesNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/CurseNotable.png"]= { ["x"]= 111, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Corruption.png"]= { + ["Art/2DArt/SkillIcons/passives/CurseNotable2.png"]= { ["x"]= 148, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/CritStrikeBleedingNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/CursemitigationclusterNotable.png"]= { ["x"]= 185, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/CurseAreaOfEffectNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/DaggerNotable1.png"]= { ["x"]= 222, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/CurseEffectNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/DaggerandClawDamage.png"]= { ["x"]= 259, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/CurseNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/DamageOverTimeNotable.png"]= { ["x"]= 296, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/CurseNotable2.png"]= { + ["Art/2DArt/SkillIcons/passives/DamageofMinionsNotable.png"]= { ["x"]= 333, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/CursemitigationclusterNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/DarkestHour.png"]= { ["x"]= 370, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DaggerNotable1.png"]= { + ["Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeFrenzyChargeNotable.png"]= { ["x"]= 407, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DaggerandClawDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/DeadEye/FarShot.png"]= { ["x"]= 444, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DamageOverTimeNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/DeadEye/GatherWinds.png"]= { ["x"]= 481, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DamageofMinionsNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/DeadEye/Ricochet.png"]= { ["x"]= 518, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DarkestHour.png"]= { + ["Art/2DArt/SkillIcons/passives/DeadeyeAnointNotable.png"]= { ["x"]= 555, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeFrenzyChargeNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/DeepBreathsNotable.png"]= { ["x"]= 592, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DeadEye/FarShot.png"]= { + ["Art/2DArt/SkillIcons/passives/DiamondSkin2.png"]= { ["x"]= 629, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DeadEye/GatherWinds.png"]= { + ["Art/2DArt/SkillIcons/passives/DireTorment.png"]= { ["x"]= 666, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DeadEye/Ricochet.png"]= { + ["Art/2DArt/SkillIcons/passives/DivineFury.png"]= { ["x"]= 703, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DeadeyeAnointNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/DivineWrath.png"]= { ["x"]= 740, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DeepBreathsNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/DmgHeraldSkillsNotable.png"]= { ["x"]= 777, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DiamondSkin2.png"]= { + ["Art/2DArt/SkillIcons/passives/DmgWhenChannelSkillsNotable.png"]= { ["x"]= 814, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DireTorment.png"]= { + ["Art/2DArt/SkillIcons/passives/DodgeAtksNotable.png"]= { ["x"]= 851, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DivineFury.png"]= { + ["Art/2DArt/SkillIcons/passives/Dreamer.png"]= { ["x"]= 888, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DivineWrath.png"]= { + ["Art/2DArt/SkillIcons/passives/DruidicRite.png"]= { ["x"]= 925, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DmgHeraldSkillsNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/DualWieldNotable.png"]= { + ["x"]= 962, + ["y"]= 523, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/DualWieldingBlockNotable.png"]= { ["x"]= 0, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DmgWhenChannelSkillsNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/DualWieldingDamage.png"]= { ["x"]= 37, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DodgeAtksNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/DurationofMinionsNotable.png"]= { ["x"]= 74, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Dreamer.png"]= { + ["Art/2DArt/SkillIcons/passives/ElementalAilmentResistance.png"]= { ["x"]= 111, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DruidicRite.png"]= { + ["Art/2DArt/SkillIcons/passives/ElementalDamagewithAttacks2.png"]= { ["x"]= 148, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DualWieldNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/ElementalDominion2.png"]= { ["x"]= 185, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DualWieldingBlockNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/ElementalFocus.png"]= { ["x"]= 222, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DualWieldingDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/Elementalist/ChillSpecialisation.png"]= { ["x"]= 259, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DurationofMinionsNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Elementalist/ElemancerIcon.png"]= { ["x"]= 296, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ElementalAilmentResistance.png"]= { + ["Art/2DArt/SkillIcons/passives/Elementalist/IgniteSpecialisation.png"]= { ["x"]= 333, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ElementalDamagewithAttacks2.png"]= { + ["Art/2DArt/SkillIcons/passives/Elementalist/IridescentFlesh.png"]= { ["x"]= 370, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ElementalDominion2.png"]= { + ["Art/2DArt/SkillIcons/passives/Elementalist/LiegeOfThePrimordial.png"]= { ["x"]= 407, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ElementalFocus.png"]= { + ["Art/2DArt/SkillIcons/passives/Elementalist/PendulumOfDestruction.png"]= { ["x"]= 444, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Elementalist/ChillSpecialisation.png"]= { + ["Art/2DArt/SkillIcons/passives/Elementalist/PrimevalForce.png"]= { ["x"]= 481, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Elementalist/ElemancerIcon.png"]= { + ["Art/2DArt/SkillIcons/passives/Elementalist/ShockSpecialisation.png"]= { ["x"]= 518, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Elementalist/IgniteSpecialisation.png"]= { + ["Art/2DArt/SkillIcons/passives/ElementalistAnointNotable.png"]= { ["x"]= 555, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Elementalist/IridescentFlesh.png"]= { + ["Art/2DArt/SkillIcons/passives/EnduranceChargeNotable.png"]= { ["x"]= 592, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Elementalist/LiegeOfThePrimordial.png"]= { + ["Art/2DArt/SkillIcons/passives/EnergyShieldNotable.png"]= { ["x"]= 629, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Elementalist/PendulumOfDestruction.png"]= { + ["Art/2DArt/SkillIcons/passives/Entropy.png"]= { ["x"]= 666, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Elementalist/PrimevalForce.png"]= { + ["Art/2DArt/SkillIcons/passives/EscalationNotable.png"]= { ["x"]= 703, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Elementalist/ShockSpecialisation.png"]= { + ["Art/2DArt/SkillIcons/passives/EssenceSurge.png"]= { ["x"]= 740, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ElementalistAnointNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/EvasionAndBlindNotable.png"]= { ["x"]= 777, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/EnduranceChargeNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/EvasionAndPhasingNotable.png"]= { ["x"]= 814, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/EnergyShieldNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/EvasionNotable.png"]= { ["x"]= 851, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Entropy.png"]= { + ["Art/2DArt/SkillIcons/passives/ExceptionalPerformance.png"]= { ["x"]= 888, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/EscalationNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/ExplosiveRunes.png"]= { ["x"]= 925, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/EssenceSurge.png"]= { + ["Art/2DArt/SkillIcons/passives/EyesOfTheDeadly.png"]= { + ["x"]= 962, + ["y"]= 560, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/EyesOfThePowerful.png"]= { ["x"]= 0, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/EvasionAndBlindNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/EyesOfTheSavant.png"]= { ["x"]= 37, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/EvasionAndPhasingNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/FasterBleeding2.png"]= { ["x"]= 74, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/EvasionNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/FatalBlade.png"]= { ["x"]= 111, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ExceptionalPerformance.png"]= { + ["Art/2DArt/SkillIcons/passives/FireAilment.png"]= { ["x"]= 148, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ExplosiveRunes.png"]= { + ["Art/2DArt/SkillIcons/passives/FireDamageOverTimeNotable.png"]= { ["x"]= 185, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/EyesOfTheDeadly.png"]= { + ["Art/2DArt/SkillIcons/passives/FireResistNotable.png"]= { ["x"]= 222, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/EyesOfThePowerful.png"]= { + ["Art/2DArt/SkillIcons/passives/FlaskDuration.png"]= { ["x"]= 259, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/EyesOfTheSavant.png"]= { + ["Art/2DArt/SkillIcons/passives/FlaskNotableCritStrikeRecharge.png"]= { ["x"]= 296, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/FasterBleeding2.png"]= { + ["Art/2DArt/SkillIcons/passives/FlaskNotableFlasksLastLonger.png"]= { ["x"]= 333, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/FatalBlade.png"]= { + ["Art/2DArt/SkillIcons/passives/ForceOfNature.png"]= { ["x"]= 370, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/FireAilment.png"]= { + ["Art/2DArt/SkillIcons/passives/ForkingProjectilesNotable.png"]= { ["x"]= 407, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/FireDamageOverTimeNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/FortifyNotable1.png"]= { ["x"]= 444, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/FireResistNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/FortifyNotable2.png"]= { ["x"]= 481, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/FlaskDuration.png"]= { + ["Art/2DArt/SkillIcons/passives/FrenzyChargeNotable.png"]= { ["x"]= 518, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/FlaskNotableCritStrikeRecharge.png"]= { + ["Art/2DArt/SkillIcons/passives/GenericBlockNotable1.png"]= { ["x"]= 555, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/FlaskNotableFlasksLastLonger.png"]= { + ["Art/2DArt/SkillIcons/passives/GenericBlockNotable2.png"]= { ["x"]= 592, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ForceOfNature.png"]= { + ["Art/2DArt/SkillIcons/passives/GenericSpellBlockNotable.png"]= { ["x"]= 629, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ForkingProjectilesNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Gladiator/GLADBloodAndSand.png"]= { ["x"]= 666, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/FortifyNotable1.png"]= { + ["Art/2DArt/SkillIcons/passives/Gladiator/GLADBloodInEyes.png"]= { ["x"]= 703, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/FortifyNotable2.png"]= { + ["Art/2DArt/SkillIcons/passives/Gladiator/GLADPainForged.png"]= { ["x"]= 740, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/FrenzyChargeNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Gladiator/GLADVersitileCombatant.png"]= { ["x"]= 777, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/GenericBlockNotable1.png"]= { + ["Art/2DArt/SkillIcons/passives/Gladiator/GLADViolence.png"]= { ["x"]= 814, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/GenericBlockNotable2.png"]= { + ["Art/2DArt/SkillIcons/passives/Gladiator/GLADViolentRetaliation.png"]= { ["x"]= 851, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/GenericSpellBlockNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Gladiator/GladiatorDualWiledSwordAxeNotable.png"]= { ["x"]= 888, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Gladiator/GLADBloodAndSand.png"]= { + ["Art/2DArt/SkillIcons/passives/GladiatorAnointNotable.png"]= { ["x"]= 925, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Gladiator/GLADBloodInEyes.png"]= { + ["Art/2DArt/SkillIcons/passives/GolemsNotable.png"]= { + ["x"]= 962, + ["y"]= 597, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/GreenProjectileAttackNotable.png"]= { ["x"]= 0, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Gladiator/GLADPainForged.png"]= { + ["Art/2DArt/SkillIcons/passives/GrowthandDecay.png"]= { ["x"]= 37, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Gladiator/GLADVersitileCombatant.png"]= { + ["Art/2DArt/SkillIcons/passives/Guardian/GuardianHallowingFlameNotable.png"]= { ["x"]= 74, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Gladiator/GLADViolence.png"]= { + ["Art/2DArt/SkillIcons/passives/Guardian/HarmonyOfPurpose.png"]= { ["x"]= 111, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Gladiator/GLADViolentRetaliation.png"]= { + ["Art/2DArt/SkillIcons/passives/Guardian/Radient Crusade.png"]= { ["x"]= 148, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Gladiator/GladiatorDualWiledSwordAxeNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Guardian/RadientFaith.png"]= { ["x"]= 185, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/GladiatorAnointNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Guardian/ShieldMastery.png"]= { ["x"]= 222, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/GolemsNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Guardian/TimeOfNeed.png"]= { ["x"]= 259, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/GreenProjectileAttackNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Guardian/Unwavering Crusade.png"]= { ["x"]= 296, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/GrowthandDecay.png"]= { + ["Art/2DArt/SkillIcons/passives/Guardian/UnwaveringFaith.png"]= { ["x"]= 333, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Guardian/GuardianHallowingFlameNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/GuardianAnointNotable.png"]= { ["x"]= 370, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Guardian/HarmonyOfPurpose.png"]= { + ["Art/2DArt/SkillIcons/passives/Harrier.png"]= { ["x"]= 407, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Guardian/Radient Crusade.png"]= { + ["Art/2DArt/SkillIcons/passives/HeartandSoul.png"]= { ["x"]= 444, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Guardian/RadientFaith.png"]= { + ["Art/2DArt/SkillIcons/passives/HeartofChaos.png"]= { ["x"]= 481, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Guardian/ShieldMastery.png"]= { + ["Art/2DArt/SkillIcons/passives/HeartoftheOak.png"]= { ["x"]= 518, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Guardian/TimeOfNeed.png"]= { + ["Art/2DArt/SkillIcons/passives/Hearty.png"]= { ["x"]= 555, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Guardian/Unwavering Crusade.png"]= { + ["Art/2DArt/SkillIcons/passives/HeirophantAnointNotable.png"]= { ["x"]= 592, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Guardian/UnwaveringFaith.png"]= { + ["Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.png"]= { ["x"]= 629, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/GuardianAnointNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/HeraldDamageNotable.png"]= { ["x"]= 666, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Harrier.png"]= { + ["Art/2DArt/SkillIcons/passives/HeraldReservation.png"]= { ["x"]= 703, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/HeartandSoul.png"]= { + ["Art/2DArt/SkillIcons/passives/Hierophant/AncestralZeal.png"]= { ["x"]= 740, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/HeartofChaos.png"]= { + ["Art/2DArt/SkillIcons/passives/Hierophant/ArcaneSurge.png"]= { ["x"]= 777, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/HeartoftheOak.png"]= { + ["Art/2DArt/SkillIcons/passives/Hierophant/DiscipleOfRuin.png"]= { ["x"]= 814, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Hearty.png"]= { + ["Art/2DArt/SkillIcons/passives/Hierophant/ItemAugment.png"]= { ["x"]= 851, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/HeirophantAnointNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Hierophant/MindOverBeing.png"]= { ["x"]= 888, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.png"]= { + ["Art/2DArt/SkillIcons/passives/Hierophant/MindOverBody.png"]= { ["x"]= 925, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/HeraldDamageNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Hierophant/SignOfPurpose.png"]= { + ["x"]= 962, + ["y"]= 634, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Hierophant/SpiritualEmpowerment.png"]= { ["x"]= 0, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/HeraldReservation.png"]= { + ["Art/2DArt/SkillIcons/passives/HiredKiller2.png"]= { ["x"]= 37, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Hierophant/AncestralZeal.png"]= { + ["Art/2DArt/SkillIcons/passives/HoldingShieldDamage.png"]= { ["x"]= 74, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Hierophant/ArcaneSurge.png"]= { + ["Art/2DArt/SkillIcons/passives/Hunter.png"]= { ["x"]= 111, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Hierophant/DiscipleOfRuin.png"]= { + ["Art/2DArt/SkillIcons/passives/IgniteAshNotable.png"]= { ["x"]= 148, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Hierophant/ItemAugment.png"]= { + ["Art/2DArt/SkillIcons/passives/IgniteAttackNotable.png"]= { ["x"]= 185, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Hierophant/MindOverBeing.png"]= { + ["Art/2DArt/SkillIcons/passives/IgniteBleedNotable.png"]= { ["x"]= 222, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Hierophant/MindOverBody.png"]= { + ["Art/2DArt/SkillIcons/passives/IgniteStunNotable.png"]= { ["x"]= 259, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Hierophant/SignOfPurpose.png"]= { + ["Art/2DArt/SkillIcons/passives/IgnorePain.png"]= { ["x"]= 296, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Hierophant/SpiritualEmpowerment.png"]= { + ["Art/2DArt/SkillIcons/passives/Impale1HandNotable.png"]= { ["x"]= 333, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/HiredKiller2.png"]= { + ["Art/2DArt/SkillIcons/passives/ImpaleEffectNotable.png"]= { ["x"]= 370, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/HoldingShieldDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/ImpaleNotable1.png"]= { ["x"]= 407, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Hunter.png"]= { + ["Art/2DArt/SkillIcons/passives/ImpaleNotable2.png"]= { ["x"]= 444, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/IgniteAshNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreaseCritChanceNotable.png"]= { ["x"]= 481, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/IgniteAttackNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreaseMinionLifeNotable.png"]= { ["x"]= 518, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/IgniteBleedNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreasedAttackDamageNotable.png"]= { ["x"]= 555, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/IgniteStunNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreasedChaosDamage.png"]= { ["x"]= 592, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/IgnorePain.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreasedColdDamage.png"]= { ["x"]= 629, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Impale1HandNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreasedElementalDamage.png"]= { ["x"]= 666, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ImpaleEffectNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreasedFireDamage.png"]= { ["x"]= 703, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ImpaleNotable1.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreasedLightningDamage.png"]= { ["x"]= 740, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ImpaleNotable2.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreasedManaCostNotable.png"]= { ["x"]= 777, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/IncreaseCritChanceNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreasedMaximumLifeNotable.png"]= { ["x"]= 814, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/IncreaseMinionLifeNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreasedMinionDamageNotable.png"]= { ["x"]= 851, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/IncreasedAttackDamageNotable.png"]= { - ["x"]= 888, + ["Art/2DArt/SkillIcons/passives/IncreasedNonDamageAilmentNotable.png"]= { + ["x"]= 888, + ["y"]= 671, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.png"]= { + ["x"]= 925, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/IncreasedChaosDamage.png"]= { - ["x"]= 925, + ["Art/2DArt/SkillIcons/passives/IncreasedSpellDamageNode.png"]= { + ["x"]= 962, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/IncreasedColdDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreasedSpellDamageNotable.png"]= { ["x"]= 0, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/IncreasedElementalDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreasedWarcryNotable.png"]= { ["x"]= 37, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/IncreasedFireDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/InfusedFlesh.png"]= { ["x"]= 74, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/IncreasedLightningDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/InquisitorAnointNotable.png"]= { ["x"]= 111, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/IncreasedManaCostNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Inquistitor/ElementalDomination.png"]= { ["x"]= 148, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/IncreasedMaximumLifeNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Inquistitor/ElementalForce.png"]= { ["x"]= 185, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/IncreasedMinionDamageNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Inquistitor/ElementalMastery.png"]= { ["x"]= 222, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/IncreasedNonDamageAilmentNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Inquistitor/GloryOfTheSavant.png"]= { ["x"]= 259, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/Inquistitor/InstrumentsOfVirtue.png"]= { ["x"]= 296, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/IncreasedSpellDamageNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Inquistitor/InstrumentsofZeal.png"]= { ["x"]= 333, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/IncreasedSpellDamageNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Inquistitor/Sanctify.png"]= { ["x"]= 370, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/IncreasedWarcryNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Inspiration.png"]= { ["x"]= 407, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/InfusedFlesh.png"]= { + ["Art/2DArt/SkillIcons/passives/IntensifyNotable.png"]= { ["x"]= 444, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/InquisitorAnointNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Juggernaut/JuggernautArmourNotable.png"]= { ["x"]= 481, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Inquistitor/ElementalDomination.png"]= { + ["Art/2DArt/SkillIcons/passives/Juggernaut/Unbreakable.png"]= { ["x"]= 518, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Inquistitor/ElementalForce.png"]= { + ["Art/2DArt/SkillIcons/passives/Juggernaut/Undeniable.png"]= { ["x"]= 555, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Inquistitor/ElementalMastery.png"]= { + ["Art/2DArt/SkillIcons/passives/Juggernaut/Unflinching.png"]= { ["x"]= 592, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Inquistitor/GloryOfTheSavant.png"]= { + ["Art/2DArt/SkillIcons/passives/Juggernaut/Unrelenting.png"]= { ["x"]= 629, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Inquistitor/InstrumentsOfVirtue.png"]= { + ["Art/2DArt/SkillIcons/passives/Juggernaut/Unstoppable.png"]= { ["x"]= 666, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Inquistitor/InstrumentsofZeal.png"]= { + ["Art/2DArt/SkillIcons/passives/Juggernaut/Unyielding.png"]= { ["x"]= 703, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Inquistitor/Sanctify.png"]= { + ["Art/2DArt/SkillIcons/passives/JuggernautAnointNotable.png"]= { ["x"]= 740, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Inspiration.png"]= { + ["Art/2DArt/SkillIcons/passives/KeystoneArmourMaster.png"]= { ["x"]= 777, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/IntensifyNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/KeystoneWhispersOfDoom.png"]= { ["x"]= 814, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Juggernaut/JuggernautArmourNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/LifeArmourAndEvasion.png"]= { ["x"]= 851, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Juggernaut/Unbreakable.png"]= { + ["Art/2DArt/SkillIcons/passives/LifeFlasks.png"]= { ["x"]= 888, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Juggernaut/Undeniable.png"]= { + ["Art/2DArt/SkillIcons/passives/LifeGainOnHitNotable.png"]= { ["x"]= 925, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Juggernaut/Unflinching.png"]= { + ["Art/2DArt/SkillIcons/passives/LifeManaFlasksrecovery.png"]= { + ["x"]= 962, + ["y"]= 708, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/LifeRecoupNotable.png"]= { ["x"]= 0, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Juggernaut/Unrelenting.png"]= { + ["Art/2DArt/SkillIcons/passives/LifeRegenerationGainRegenNotable.png"]= { ["x"]= 37, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Juggernaut/Unstoppable.png"]= { + ["Art/2DArt/SkillIcons/passives/LifeRegenerationLowlifeBonusNotable.png"]= { ["x"]= 74, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Juggernaut/Unyielding.png"]= { + ["Art/2DArt/SkillIcons/passives/LifeandCursesN.png"]= { ["x"]= 111, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/JuggernautAnointNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/LifeandManaFlasks.png"]= { ["x"]= 148, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/KeystoneWhispersOfDoom.png"]= { + ["Art/2DArt/SkillIcons/passives/LifeandResistancesofMinions.png"]= { ["x"]= 185, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/LifeArmourAndEvasion.png"]= { + ["Art/2DArt/SkillIcons/passives/LightOfDivinity.png"]= { ["x"]= 222, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/LifeFlasks.png"]= { + ["Art/2DArt/SkillIcons/passives/LightningResistNotable.png"]= { ["x"]= 259, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/LifeGainOnHitNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/LinkNotable3.png"]= { ["x"]= 296, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/LifeManaFlasksrecovery.png"]= { + ["Art/2DArt/SkillIcons/passives/LinkNotable4.png"]= { ["x"]= 333, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/LifeRecoupNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/LustforCarnage.png"]= { ["x"]= 370, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/LifeRegenerationGainRegenNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/MaceNotable1.png"]= { ["x"]= 407, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/LifeRegenerationLowlifeBonusNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/MaceNotable2.png"]= { ["x"]= 444, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/LifeandCursesN.png"]= { + ["Art/2DArt/SkillIcons/passives/MaceandStaffDamage.png"]= { ["x"]= 481, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/LifeandManaFlasks.png"]= { + ["Art/2DArt/SkillIcons/passives/ManaDamageKeystone.png"]= { ["x"]= 518, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/LifeandResistancesofMinions.png"]= { + ["Art/2DArt/SkillIcons/passives/ManaFlasksOften.png"]= { ["x"]= 555, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/LightOfDivinity.png"]= { + ["Art/2DArt/SkillIcons/passives/ManaGuardNotable.png"]= { ["x"]= 592, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/LightningResistNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/ManaNotable.png"]= { ["x"]= 629, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/LinkNotable3.png"]= { + ["Art/2DArt/SkillIcons/passives/ManaandArcaneSurge.png"]= { ["x"]= 666, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/LinkNotable4.png"]= { + ["Art/2DArt/SkillIcons/passives/ManaandSpellBlock.png"]= { ["x"]= 703, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/LustforCarnage.png"]= { + ["Art/2DArt/SkillIcons/passives/ManaandSpellDamage.png"]= { ["x"]= 740, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MaceNotable1.png"]= { + ["Art/2DArt/SkillIcons/passives/Mark.png"]= { ["x"]= 777, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MaceNotable2.png"]= { + ["Art/2DArt/SkillIcons/passives/MarkNotable1.png"]= { ["x"]= 814, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MaceandStaffDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/MarkNotable2.png"]= { ["x"]= 851, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ManaDamageKeystone.png"]= { + ["Art/2DArt/SkillIcons/passives/MarkNotableIncreasedEffect.png"]= { ["x"]= 888, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ManaFlasksOften.png"]= { + ["Art/2DArt/SkillIcons/passives/MarkNotableMarkSpellRecently.png"]= { ["x"]= 925, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ManaGuardNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/MartialExperience.png"]= { + ["x"]= 962, + ["y"]= 745, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/MasterofForce.png"]= { ["x"]= 0, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ManaNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/MaxElementalResistNotable.png"]= { ["x"]= 37, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ManaandArcaneSurge.png"]= { + ["Art/2DArt/SkillIcons/passives/MaxManaNotable.png"]= { ["x"]= 74, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ManaandSpellBlock.png"]= { + ["Art/2DArt/SkillIcons/passives/MaximumElementalResistances2.png"]= { ["x"]= 111, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ManaandSpellDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/MeasuredFuryNotable.png"]= { ["x"]= 148, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Mark.png"]= { + ["Art/2DArt/SkillIcons/passives/MeleeAoENode.png"]= { ["x"]= 185, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MarkNotable1.png"]= { + ["Art/2DArt/SkillIcons/passives/MeleeAoENotable.png"]= { ["x"]= 222, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MarkNotable2.png"]= { + ["Art/2DArt/SkillIcons/passives/MeleeCriticalStrikesNotable.png"]= { ["x"]= 259, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MarkNotableIncreasedEffect.png"]= { + ["Art/2DArt/SkillIcons/passives/MeleeFireNotable.png"]= { ["x"]= 296, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MarkNotableMarkSpellRecently.png"]= { + ["Art/2DArt/SkillIcons/passives/MeleeRange2.png"]= { ["x"]= 333, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MartialExperience.png"]= { + ["Art/2DArt/SkillIcons/passives/MeleeUtility.png"]= { ["x"]= 370, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MasterofForce.png"]= { + ["Art/2DArt/SkillIcons/passives/Meleerange.png"]= { ["x"]= 407, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MaxElementalResistNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/MentalRapidity.png"]= { ["x"]= 444, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MaxManaNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/MindPact.png"]= { ["x"]= 481, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MaximumElementalResistances2.png"]= { + ["Art/2DArt/SkillIcons/passives/MineAreaOfEffectNotable.png"]= { ["x"]= 518, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MeasuredFuryNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/MineCriticalStrikesNotable.png"]= { ["x"]= 555, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MeleeAoENode.png"]= { + ["Art/2DArt/SkillIcons/passives/MineManaReservationNotable.png"]= { ["x"]= 592, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MeleeAoENotable.png"]= { + ["Art/2DArt/SkillIcons/passives/MineTrap.png"]= { ["x"]= 629, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MeleeCriticalStrikesNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/MinionDmgHeraldSkillsNotable.png"]= { ["x"]= 666, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MeleeFireNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Mirage.png"]= { ["x"]= 703, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MeleeRange2.png"]= { + ["Art/2DArt/SkillIcons/passives/NaturalAuthorityNotable.png"]= { ["x"]= 740, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MeleeUtility.png"]= { + ["Art/2DArt/SkillIcons/passives/Necromancer/CommandingTheDarkness.png"]= { ["x"]= 777, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Meleerange.png"]= { + ["Art/2DArt/SkillIcons/passives/Necromancer/CorpseConsumptionNotable2.png"]= { ["x"]= 814, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MentalRapidity.png"]= { + ["Art/2DArt/SkillIcons/passives/Necromancer/DefensiveMinionNotable.png"]= { ["x"]= 851, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MindPact.png"]= { + ["Art/2DArt/SkillIcons/passives/Necromancer/EssenceGlutton.png"]= { ["x"]= 888, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MineAreaOfEffectNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Necromancer/GenericMinionNotable.png"]= { ["x"]= 925, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MineCriticalStrikesNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Necromancer/GiftsOfTheDamned.png"]= { + ["x"]= 962, + ["y"]= 782, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Necromancer/OffensiveMinionNotable.png"]= { ["x"]= 0, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MineManaReservationNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Necromancer/PlagueBringer.png"]= { ["x"]= 37, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MineTrap.png"]= { + ["Art/2DArt/SkillIcons/passives/NecromancerAnointNotable.png"]= { ["x"]= 74, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MinionDmgHeraldSkillsNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Occultist/FatefulEchoes.png"]= { ["x"]= 111, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Mirage.png"]= { + ["Art/2DArt/SkillIcons/passives/Occultist/FrigidWake.png"]= { ["x"]= 148, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/NaturalAuthorityNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Occultist/LotusExtract.png"]= { ["x"]= 185, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Necromancer/CommandingTheDarkness.png"]= { + ["Art/2DArt/SkillIcons/passives/Occultist/SoulCatalyst.png"]= { ["x"]= 222, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Necromancer/CorpseConsumptionNotable2.png"]= { + ["Art/2DArt/SkillIcons/passives/Occultist/VoidBeacon.png"]= { ["x"]= 259, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Necromancer/DefensiveMinionNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Occultist/VowOfDamnation.png"]= { ["x"]= 296, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Necromancer/EssenceGlutton.png"]= { + ["Art/2DArt/SkillIcons/passives/Occultist/WitheringPresence.png"]= { ["x"]= 333, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Necromancer/GenericMinionNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/OccultistAnointNotable.png"]= { ["x"]= 370, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Necromancer/GiftsOfTheDamned.png"]= { + ["Art/2DArt/SkillIcons/passives/OneHandedPhysicalAndLeechNotable.png"]= { ["x"]= 407, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Necromancer/OffensiveMinionNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/PathFinder/AlchemistGift.png"]= { ["x"]= 444, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Necromancer/PlagueBringer.png"]= { + ["Art/2DArt/SkillIcons/passives/PathFinder/MasterAlchemist.png"]= { ["x"]= 481, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/NecromancerAnointNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/PathFinder/MasterHerbalist.png"]= { ["x"]= 518, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Occultist/FatefulEchoes.png"]= { + ["Art/2DArt/SkillIcons/passives/PathFinder/MasterSurgeon.png"]= { ["x"]= 555, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Occultist/FrigidWake.png"]= { + ["Art/2DArt/SkillIcons/passives/PathFinder/Master Toxicist.png"]= { ["x"]= 592, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Occultist/LotusExtract.png"]= { + ["Art/2DArt/SkillIcons/passives/PathFinder/NaturesAdrenaline.png"]= { ["x"]= 629, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Occultist/SoulCatalyst.png"]= { + ["Art/2DArt/SkillIcons/passives/PathFinder/VeteranBowyer.png"]= { ["x"]= 666, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Occultist/VoidBeacon.png"]= { + ["Art/2DArt/SkillIcons/passives/PathfinderAnointNotable.png"]= { ["x"]= 703, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Occultist/VowOfDamnation.png"]= { + ["Art/2DArt/SkillIcons/passives/PhysicalDamageNotable.png"]= { ["x"]= 740, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Occultist/WitheringPresence.png"]= { + ["Art/2DArt/SkillIcons/passives/PhysicalDamageNotableGreen.png"]= { ["x"]= 777, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/OccultistAnointNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeHybrid.png"]= { ["x"]= 814, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/OneHandedPhysicalAndLeechNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNotable.png"]= { ["x"]= 851, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/PathFinder/AlchemistGift.png"]= { + ["Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimenotable1.png"]= { ["x"]= 888, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/PathFinder/MasterAlchemist.png"]= { + ["Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimenotable2.png"]= { ["x"]= 925, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/PathFinder/MasterHerbalist.png"]= { + ["Art/2DArt/SkillIcons/passives/Poison.png"]= { + ["x"]= 962, + ["y"]= 819, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/PoisonSpellsNotable.png"]= { ["x"]= 0, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/PathFinder/MasterSurgeon.png"]= { + ["Art/2DArt/SkillIcons/passives/PowerChargeNotable.png"]= { ["x"]= 37, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/PathFinder/Master Toxicist.png"]= { + ["Art/2DArt/SkillIcons/passives/Primalist/PrimalistCorpseLoot.png"]= { ["x"]= 74, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/PathFinder/NaturesAdrenaline.png"]= { + ["Art/2DArt/SkillIcons/passives/Primalist/PrimalistInventoryExpansion.png"]= { ["x"]= 111, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/PathFinder/VeteranBowyer.png"]= { + ["Art/2DArt/SkillIcons/passives/ProfaneChemistry.png"]= { ["x"]= 148, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/PathfinderAnointNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/ProjectileDmgNotable.png"]= { ["x"]= 185, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/PhysicalDamageNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/ProjectilesNotable.png"]= { ["x"]= 222, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/PhysicalDamageNotableGreen.png"]= { + ["Art/2DArt/SkillIcons/passives/ProtectiveWinds.png"]= { ["x"]= 259, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeHybrid.png"]= { + ["Art/2DArt/SkillIcons/passives/QuickRecovery.png"]= { ["x"]= 296, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/RageNotable.png"]= { ["x"]= 333, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimenotable1.png"]= { + ["Art/2DArt/SkillIcons/passives/RageNotable1.png"]= { ["x"]= 370, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimenotable2.png"]= { + ["Art/2DArt/SkillIcons/passives/RageNotable2.png"]= { ["x"]= 407, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Poison.png"]= { + ["Art/2DArt/SkillIcons/passives/RageNotable3.png"]= { ["x"]= 444, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/PoisonSpellsNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/RangedTotemCriticalStrikes.png"]= { ["x"]= 481, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/PowerChargeNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/RangedTotemOffensive.png"]= { ["x"]= 518, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Primalist/PrimalistCorpseLoot.png"]= { + ["Art/2DArt/SkillIcons/passives/RedHolyAttackNotable.png"]= { ["x"]= 555, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Primalist/PrimalistInventoryExpansion.png"]= { + ["Art/2DArt/SkillIcons/passives/Redemption.png"]= { ["x"]= 592, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ProfaneChemistry.png"]= { + ["Art/2DArt/SkillIcons/passives/ReducedManaNotable.png"]= { ["x"]= 629, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ProjectileDmgNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/ReducedProjectileSpeedNotable.png"]= { ["x"]= 666, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ProjectilesNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNotable.png"]= { ["x"]= 703, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ProtectiveWinds.png"]= { + ["Art/2DArt/SkillIcons/passives/Resourcefulness.png"]= { ["x"]= 740, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/QuickRecovery.png"]= { + ["Art/2DArt/SkillIcons/passives/Retaliation.png"]= { ["x"]= 777, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/RageNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/RetaliationAoE.png"]= { ["x"]= 814, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/RageNotable1.png"]= { + ["Art/2DArt/SkillIcons/passives/RetaliationAttackBlock.png"]= { ["x"]= 851, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/RageNotable2.png"]= { + ["Art/2DArt/SkillIcons/passives/RetaliationDurationCooldown.png"]= { ["x"]= 888, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/RageNotable3.png"]= { + ["Art/2DArt/SkillIcons/passives/RetaliationSkillDamage.png"]= { ["x"]= 925, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/RangedTotemCriticalStrikes.png"]= { + ["Art/2DArt/SkillIcons/passives/RetaliationSpellBlock.png"]= { + ["x"]= 962, + ["y"]= 856, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/RetaliationStun.png"]= { ["x"]= 0, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/RangedTotemOffensive.png"]= { + ["Art/2DArt/SkillIcons/passives/Retribution.png"]= { ["x"]= 37, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/RedHolyAttackNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Revelry.png"]= { ["x"]= 74, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Redemption.png"]= { + ["Art/2DArt/SkillIcons/passives/RighteousArmy.png"]= { ["x"]= 111, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ReducedManaNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Righteous Decree.png"]= { ["x"]= 148, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ReducedProjectileSpeedNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/RitualBloodLineNotable.png"]= { ["x"]= 185, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Robust.png"]= { ["x"]= 222, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Resourcefulness.png"]= { + ["Art/2DArt/SkillIcons/passives/Saboteur/BlindedAssult.png"]= { ["x"]= 259, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Retaliation.png"]= { + ["Art/2DArt/SkillIcons/passives/Saboteur/BombSpecialist.png"]= { ["x"]= 296, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/RetaliationAoE.png"]= { + ["Art/2DArt/SkillIcons/passives/Saboteur/ChainReaction.png"]= { ["x"]= 333, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/RetaliationAttackBlock.png"]= { + ["Art/2DArt/SkillIcons/passives/Saboteur/DemolitionSpecialist.png"]= { ["x"]= 370, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/RetaliationDurationCooldown.png"]= { + ["Art/2DArt/SkillIcons/passives/Saboteur/ExplosivesExpert.png"]= { ["x"]= 407, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/RetaliationSkillDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/Saboteur/LikeClockworkNotable.png"]= { ["x"]= 444, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/RetaliationSpellBlock.png"]= { + ["Art/2DArt/SkillIcons/passives/Saboteur/PerfectCrime.png"]= { ["x"]= 481, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/RetaliationStun.png"]= { + ["Art/2DArt/SkillIcons/passives/Saboteur/ShadowsDarknessBlind.png"]= { ["x"]= 518, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Retribution.png"]= { + ["Art/2DArt/SkillIcons/passives/Saboteur/ShrapnelSpecialist.png"]= { ["x"]= 555, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Revelry.png"]= { + ["Art/2DArt/SkillIcons/passives/SaboteurAnointNotable.png"]= { ["x"]= 592, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/RighteousArmy.png"]= { + ["Art/2DArt/SkillIcons/passives/Sanctuary.png"]= { ["x"]= 629, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Righteous Decree.png"]= { + ["Art/2DArt/SkillIcons/passives/SareshBloodlineNotable1.png"]= { ["x"]= 666, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/RitualBloodLineNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/SareshBloodlineNotable3.png"]= { ["x"]= 703, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Robust.png"]= { + ["Art/2DArt/SkillIcons/passives/SareshBloodlineNoteble2.png"]= { ["x"]= 740, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Saboteur/BlindedAssult.png"]= { + ["Art/2DArt/SkillIcons/passives/SavantPath.png"]= { ["x"]= 777, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Saboteur/BombSpecialist.png"]= { + ["Art/2DArt/SkillIcons/passives/SearingHeat.png"]= { ["x"]= 814, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Saboteur/ChainReaction.png"]= { + ["Art/2DArt/SkillIcons/passives/Sentinel.png"]= { ["x"]= 851, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Saboteur/DemolitionSpecialist.png"]= { + ["Art/2DArt/SkillIcons/passives/Shaper.png"]= { ["x"]= 888, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Saboteur/ExplosivesExpert.png"]= { + ["Art/2DArt/SkillIcons/passives/ShieldAttackDamage.png"]= { ["x"]= 925, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Saboteur/LikeClockworkNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/ShieldNotable.png"]= { + ["x"]= 962, + ["y"]= 893, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ShrugOff.png"]= { ["x"]= 0, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Saboteur/PerfectCrime.png"]= { + ["Art/2DArt/SkillIcons/passives/SkitteringRunes.png"]= { ["x"]= 37, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Saboteur/ShadowsDarknessBlind.png"]= { + ["Art/2DArt/SkillIcons/passives/Slayer/BaneOfLegends.png"]= { ["x"]= 74, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Saboteur/ShrapnelSpecialist.png"]= { + ["Art/2DArt/SkillIcons/passives/Slayer/BrutalFervor.png"]= { ["x"]= 111, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/SaboteurAnointNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Slayer/Charges.png"]= { ["x"]= 148, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Sanctuary.png"]= { + ["Art/2DArt/SkillIcons/passives/Slayer/CriticalAttacks.png"]= { ["x"]= 185, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/SareshBloodlineNotable1.png"]= { + ["Art/2DArt/SkillIcons/passives/Slayer/EndlessHunger.png"]= { ["x"]= 222, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/SareshBloodlineNotable3.png"]= { + ["Art/2DArt/SkillIcons/passives/Slayer/Headman.png"]= { ["x"]= 259, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/SareshBloodlineNoteble2.png"]= { + ["Art/2DArt/SkillIcons/passives/Slayer/Impact.png"]= { ["x"]= 296, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/SavantPath.png"]= { + ["Art/2DArt/SkillIcons/passives/SlayerAnointNotable.png"]= { ["x"]= 333, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/SearingHeat.png"]= { + ["Art/2DArt/SkillIcons/passives/SoulPact.png"]= { ["x"]= 370, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Sentinel.png"]= { + ["Art/2DArt/SkillIcons/passives/SoulSiphoning.png"]= { ["x"]= 407, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Shaper.png"]= { + ["Art/2DArt/SkillIcons/passives/SpellSuppressionLifeFlasksN.png"]= { ["x"]= 444, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ShieldAttackDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/SpellSupressionAndEnergyShieldNotable.png"]= { ["x"]= 481, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ShieldNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/SpellSupressionNotable1.png"]= { ["x"]= 518, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ShrugOff.png"]= { + ["Art/2DArt/SkillIcons/passives/SpellSupressionNotable2.png"]= { ["x"]= 555, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/SkitteringRunes.png"]= { + ["Art/2DArt/SkillIcons/passives/SpikedBulwark.png"]= { ["x"]= 592, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Slayer/BaneOfLegends.png"]= { + ["Art/2DArt/SkillIcons/passives/SpiritualAid.png"]= { ["x"]= 629, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Slayer/BrutalFervor.png"]= { + ["Art/2DArt/SkillIcons/passives/SpiritualCommand.png"]= { ["x"]= 666, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Slayer/Charges.png"]= { + ["Art/2DArt/SkillIcons/passives/StaffCrit.png"]= { ["x"]= 703, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Slayer/CriticalAttacks.png"]= { + ["Art/2DArt/SkillIcons/passives/StaffNotable.png"]= { ["x"]= 740, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Slayer/EndlessHunger.png"]= { + ["Art/2DArt/SkillIcons/passives/StaffNotable2.png"]= { ["x"]= 777, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Slayer/Headman.png"]= { + ["Art/2DArt/SkillIcons/passives/StaffNotable3.png"]= { ["x"]= 814, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Slayer/Impact.png"]= { + ["Art/2DArt/SkillIcons/passives/StanceNotableReservation.png"]= { ["x"]= 851, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/SlayerAnointNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/StanceNotableSwitching.png"]= { ["x"]= 888, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/SoulPact.png"]= { + ["Art/2DArt/SkillIcons/passives/Storm Weaver.png"]= { ["x"]= 925, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/SoulSiphoning.png"]= { + ["Art/2DArt/SkillIcons/passives/StrengthOfBlood.png"]= { + ["x"]= 962, + ["y"]= 930, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/StrikeSkillsNotable.png"]= { ["x"]= 0, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/SpellSuppressionLifeFlasksN.png"]= { + ["Art/2DArt/SkillIcons/passives/StunAvoidNotable.png"]= { ["x"]= 37, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/SpellSupressionAndEnergyShieldNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/StunMastery.png"]= { ["x"]= 74, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/SpellSupressionNotable1.png"]= { + ["Art/2DArt/SkillIcons/passives/SupremeProdigy.png"]= { ["x"]= 111, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/SpellSupressionNotable2.png"]= { + ["Art/2DArt/SkillIcons/passives/Survivalist.png"]= { ["x"]= 148, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/SpikedBulwark.png"]= { + ["Art/2DArt/SkillIcons/passives/SwordNotable1.png"]= { ["x"]= 185, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/SpiritualAid.png"]= { + ["Art/2DArt/SkillIcons/passives/TasteforBlood.png"]= { ["x"]= 222, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/SpiritualCommand.png"]= { + ["Art/2DArt/SkillIcons/passives/TempestBlast.png"]= { ["x"]= 259, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/StaffCrit.png"]= { + ["Art/2DArt/SkillIcons/passives/ThrillKiller.png"]= { ["x"]= 296, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/StaffNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/TinctureFlaskNotable1.png"]= { ["x"]= 333, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/StaffNotable2.png"]= { + ["Art/2DArt/SkillIcons/passives/TinctureManaNotable1.png"]= { ["x"]= 370, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/StaffNotable3.png"]= { + ["Art/2DArt/SkillIcons/passives/TinctureNotable1.png"]= { ["x"]= 407, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/StanceNotableReservation.png"]= { + ["Art/2DArt/SkillIcons/passives/TinctureNotable2.png"]= { ["x"]= 444, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/StanceNotableSwitching.png"]= { + ["Art/2DArt/SkillIcons/passives/TinctureNotable3.png"]= { ["x"]= 481, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Storm Weaver.png"]= { + ["Art/2DArt/SkillIcons/passives/TotemDmgNotable.png"]= { ["x"]= 518, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/StrengthOfBlood.png"]= { + ["Art/2DArt/SkillIcons/passives/Trap.png"]= { ["x"]= 555, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/StrikeSkillsNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Trap2.png"]= { ["x"]= 592, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/StunAvoidNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/TrapAndMineDmgNotable.png"]= { ["x"]= 629, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/StunMastery.png"]= { + ["Art/2DArt/SkillIcons/passives/Trickster/DamageOverTime.png"]= { ["x"]= 666, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/SupremeProdigy.png"]= { + ["Art/2DArt/SkillIcons/passives/Trickster/HeedfulRecovery.png"]= { ["x"]= 703, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Survivalist.png"]= { + ["Art/2DArt/SkillIcons/passives/Trickster/ImmuneToDoT.png"]= { ["x"]= 740, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/SwordNotable1.png"]= { + ["Art/2DArt/SkillIcons/passives/Trickster/OneStepAheadTrickster.png"]= { ["x"]= 777, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/TasteforBlood.png"]= { + ["Art/2DArt/SkillIcons/passives/Trickster/PolymathTrickster.png"]= { ["x"]= 814, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/TempestBlast.png"]= { + ["Art/2DArt/SkillIcons/passives/Trickster/SoulThiefTrickster.png"]= { ["x"]= 851, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ThrillKiller.png"]= { + ["Art/2DArt/SkillIcons/passives/Trickster/SupressionEnergyShieldTrickster.png"]= { ["x"]= 888, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/TinctureFlaskNotable1.png"]= { + ["Art/2DArt/SkillIcons/passives/Trickster/UncontrolledVigour.png"]= { ["x"]= 925, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/TinctureManaNotable1.png"]= { + ["Art/2DArt/SkillIcons/passives/TricksterAnointNotable.png"]= { + ["x"]= 962, + ["y"]= 967, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/TrueStriker.png"]= { ["x"]= 0, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/TinctureNotable1.png"]= { + ["Art/2DArt/SkillIcons/passives/TwoHandedMeleeDamage.png"]= { ["x"]= 37, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/TinctureNotable2.png"]= { + ["Art/2DArt/SkillIcons/passives/TwoHandedweaponImpalesNotable.png"]= { ["x"]= 74, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/TinctureNotable3.png"]= { + ["Art/2DArt/SkillIcons/passives/Unfaltering.png"]= { ["x"]= 111, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/TotemDmgNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Unrelenting.png"]= { ["x"]= 148, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Trap.png"]= { + ["Art/2DArt/SkillIcons/passives/Unwavering.png"]= { ["x"]= 185, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Trap2.png"]= { + ["Art/2DArt/SkillIcons/passives/UpwardsFiringProjectilesNotable.png"]= { ["x"]= 222, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/TrapAndMineDmgNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Vampirism.png"]= { ["x"]= 259, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Trickster/DamageOverTime.png"]= { + ["Art/2DArt/SkillIcons/passives/VoidBarrier.png"]= { ["x"]= 296, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Trickster/HeedfulRecovery.png"]= { + ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanBloodMagic1.png"]= { ["x"]= 333, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Trickster/ImmuneToDoT.png"]= { + ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanBloodMagic2.png"]= { ["x"]= 370, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Trickster/OneStepAheadTrickster.png"]= { + ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanBloodMagic3.png"]= { ["x"]= 407, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Trickster/PolymathTrickster.png"]= { + ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanCorpses.png"]= { ["x"]= 444, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Trickster/SoulThiefTrickster.png"]= { + ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanCurses2.png"]= { ["x"]= 481, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Trickster/SupressionEnergyShieldTrickster.png"]= { + ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanCursesChoice.png"]= { ["x"]= 518, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Trickster/UncontrolledVigour.png"]= { + ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanVoodooDoll.png"]= { ["x"]= 555, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/TricksterAnointNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/WandDamage.png"]= { ["x"]= 592, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/TrueStriker.png"]= { + ["Art/2DArt/SkillIcons/passives/WarcryBuffEffectNotable.png"]= { ["x"]= 629, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/TwoHandedMeleeDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/WarcryGainDamageNotable.png"]= { ["x"]= 666, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/TwoHandedweaponImpalesNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Warden/TinctureRangedNotable.png"]= { ["x"]= 703, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Unfaltering.png"]= { + ["Art/2DArt/SkillIcons/passives/Warden/WardenAllAilments.png"]= { ["x"]= 740, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Unrelenting.png"]= { + ["Art/2DArt/SkillIcons/passives/Warden/WardenBarkskin1.png"]= { ["x"]= 777, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Unwavering.png"]= { + ["Art/2DArt/SkillIcons/passives/Warden/WardenBarkskin2.png"]= { ["x"]= 814, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/UpwardsFiringProjectilesNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Warden/WardenColdAilments.png"]= { ["x"]= 851, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Vampirism.png"]= { + ["Art/2DArt/SkillIcons/passives/Warden/WardenFireAilments.png"]= { ["x"]= 888, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/VoidBarrier.png"]= { + ["Art/2DArt/SkillIcons/passives/Warden/WardenLightningAilments.png"]= { ["x"]= 925, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanBloodMagic1.png"]= { + ["Art/2DArt/SkillIcons/passives/Warden/WardenPrimitivism.png"]= { + ["x"]= 962, + ["y"]= 1004, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Warden/WardenSaps1.png"]= { ["x"]= 0, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanBloodMagic2.png"]= { + ["Art/2DArt/SkillIcons/passives/Warden/WardenSaps2.png"]= { ["x"]= 37, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanBloodMagic3.png"]= { + ["Art/2DArt/SkillIcons/passives/Warden/WardenSaps3.png"]= { ["x"]= 74, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanCorpses.png"]= { + ["Art/2DArt/SkillIcons/passives/Warden/WardenTracking.png"]= { ["x"]= 111, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanCurses2.png"]= { + ["Art/2DArt/SkillIcons/passives/WardenAnointNotable.png"]= { ["x"]= 148, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanCursesChoice.png"]= { + ["Art/2DArt/SkillIcons/passives/Warrior.png"]= { ["x"]= 185, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanVoodooDoll.png"]= { + ["Art/2DArt/SkillIcons/passives/WeaponElementalNotable.png"]= { ["x"]= 222, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/WandDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/WritteninBlood.png"]= { ["x"]= 259, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/WarcryBuffEffectNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/accuracydex.png"]= { ["x"]= 296, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/WarcryGainDamageNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/adderstouch.png"]= { ["x"]= 333, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Warden/TinctureRangedNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/ambidexterity.png"]= { ["x"]= 370, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Warden/WardenAllAilments.png"]= { + ["Art/2DArt/SkillIcons/passives/amplify.png"]= { ["x"]= 407, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Warden/WardenBarkskin1.png"]= { + ["Art/2DArt/SkillIcons/passives/animalspirit.png"]= { ["x"]= 444, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Warden/WardenBarkskin2.png"]= { + ["Art/2DArt/SkillIcons/passives/arcaneefficiency.png"]= { ["x"]= 481, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Warden/WardenColdAilments.png"]= { + ["Art/2DArt/SkillIcons/passives/arcane focus.png"]= { ["x"]= 518, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Warden/WardenFireAilments.png"]= { + ["Art/2DArt/SkillIcons/passives/arcanepotency.png"]= { ["x"]= 555, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Warden/WardenLightningAilments.png"]= { + ["Art/2DArt/SkillIcons/passives/arcaneradience.png"]= { ["x"]= 592, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Warden/WardenPrimitivism.png"]= { + ["Art/2DArt/SkillIcons/passives/armourmastery.png"]= { ["x"]= 629, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Warden/WardenSaps1.png"]= { + ["Art/2DArt/SkillIcons/passives/arsonist.png"]= { ["x"]= 666, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Warden/WardenSaps2.png"]= { + ["Art/2DArt/SkillIcons/passives/ashfrostandstorm.png"]= { ["x"]= 703, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Warden/WardenSaps3.png"]= { + ["Art/2DArt/SkillIcons/passives/attackspeedbow.png"]= { ["x"]= 740, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Warden/WardenTracking.png"]= { + ["Art/2DArt/SkillIcons/passives/authority.png"]= { ["x"]= 777, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/WardenAnointNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/barricade.png"]= { ["x"]= 814, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Warrior.png"]= { + ["Art/2DArt/SkillIcons/passives/berserking.png"]= { ["x"]= 851, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/WeaponElementalNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/bladebarrier.png"]= { ["x"]= 888, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/WritteninBlood.png"]= { + ["Art/2DArt/SkillIcons/passives/blademaster.png"]= { ["x"]= 925, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/accuracydex.png"]= { + ["Art/2DArt/SkillIcons/passives/blademistress.png"]= { + ["x"]= 962, + ["y"]= 1041, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/blastradius.png"]= { ["x"]= 0, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/adderstouch.png"]= { + ["Art/2DArt/SkillIcons/passives/bodysoul.png"]= { ["x"]= 37, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ambidexterity.png"]= { + ["Art/2DArt/SkillIcons/passives/borntofight.png"]= { ["x"]= 74, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/amplify.png"]= { + ["Art/2DArt/SkillIcons/passives/breathofrime.png"]= { ["x"]= 111, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/animalspirit.png"]= { + ["Art/2DArt/SkillIcons/passives/butchery.png"]= { ["x"]= 148, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/arcaneefficiency.png"]= { + ["Art/2DArt/SkillIcons/passives/castavoidinterruption.png"]= { ["x"]= 185, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/arcane focus.png"]= { + ["Art/2DArt/SkillIcons/passives/catalyse.png"]= { ["x"]= 222, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/arcanepotency.png"]= { + ["Art/2DArt/SkillIcons/passives/chargedex.png"]= { ["x"]= 259, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/arcaneradience.png"]= { + ["Art/2DArt/SkillIcons/passives/chargeint.png"]= { ["x"]= 296, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/armourmastery.png"]= { + ["Art/2DArt/SkillIcons/passives/chargestr.png"]= { ["x"]= 333, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/arsonist.png"]= { + ["Art/2DArt/SkillIcons/passives/cleverconstruction.png"]= { ["x"]= 370, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ashfrostandstorm.png"]= { + ["Art/2DArt/SkillIcons/passives/clustersLink2.png"]= { ["x"]= 407, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/attackspeedbow.png"]= { + ["Art/2DArt/SkillIcons/passives/clustersLink3.png"]= { ["x"]= 444, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/authority.png"]= { + ["Art/2DArt/SkillIcons/passives/criticalstrikemultiplier2.png"]= { ["x"]= 481, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/barricade.png"]= { + ["Art/2DArt/SkillIcons/passives/cruelblade.png"]= { ["x"]= 518, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/berserking.png"]= { + ["Art/2DArt/SkillIcons/passives/daggerpenetration.png"]= { ["x"]= 555, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/bladebarrier.png"]= { + ["Art/2DArt/SkillIcons/passives/deadlydraw.png"]= { ["x"]= 592, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/blademaster.png"]= { + ["Art/2DArt/SkillIcons/passives/deadlyprecision.png"]= { ["x"]= 629, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/blademistress.png"]= { + ["Art/2DArt/SkillIcons/passives/deathattunement.png"]= { ["x"]= 666, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/blastradius.png"]= { + ["Art/2DArt/SkillIcons/passives/deepthoughts.png"]= { ["x"]= 703, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/bodysoul.png"]= { + ["Art/2DArt/SkillIcons/passives/deepwisdom.png"]= { ["x"]= 740, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/borntofight.png"]= { + ["Art/2DArt/SkillIcons/passives/diamondskin.png"]= { ["x"]= 777, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/breathofrime.png"]= { + ["Art/2DArt/SkillIcons/passives/doomcast.png"]= { ["x"]= 814, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/butchery.png"]= { + ["Art/2DArt/SkillIcons/passives/eagleeye.png"]= { ["x"]= 851, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/castavoidinterruption.png"]= { + ["Art/2DArt/SkillIcons/passives/eagletalons.png"]= { ["x"]= 888, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/catalyse.png"]= { + ["Art/2DArt/SkillIcons/passives/elderpower.png"]= { ["x"]= 925, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/chargedex.png"]= { + ["Art/2DArt/SkillIcons/passives/elementalist.png"]= { + ["x"]= 962, + ["y"]= 1078, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/evasion.png"]= { ["x"]= 0, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/chargeint.png"]= { + ["Art/2DArt/SkillIcons/passives/executioner.png"]= { ["x"]= 37, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/chargestr.png"]= { + ["Art/2DArt/SkillIcons/passives/expeditiousmunitions.png"]= { ["x"]= 74, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/cleverconstruction.png"]= { + ["Art/2DArt/SkillIcons/passives/fellingtheweak.png"]= { ["x"]= 111, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/clustersLink2.png"]= { + ["Art/2DArt/SkillIcons/passives/fending.png"]= { ["x"]= 148, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/clustersLink3.png"]= { + ["Art/2DArt/SkillIcons/passives/finesse.png"]= { ["x"]= 185, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/criticalstrikemultiplier2.png"]= { + ["Art/2DArt/SkillIcons/passives/firedamage.png"]= { ["x"]= 222, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/cruelblade.png"]= { + ["Art/2DArt/SkillIcons/passives/flameborn.png"]= { ["x"]= 259, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/daggerpenetration.png"]= { + ["Art/2DArt/SkillIcons/passives/flaying.png"]= { ["x"]= 296, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/deadlydraw.png"]= { + ["Art/2DArt/SkillIcons/passives/foresight.png"]= { ["x"]= 333, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/deadlyprecision.png"]= { + ["Art/2DArt/SkillIcons/passives/frostborn.png"]= { ["x"]= 370, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/deathattunement.png"]= { + ["Art/2DArt/SkillIcons/passives/furybolts.png"]= { ["x"]= 407, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/deepthoughts.png"]= { + ["Art/2DArt/SkillIcons/passives/fussilade.png"]= { ["x"]= 444, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/deepwisdom.png"]= { + ["Art/2DArt/SkillIcons/passives/galvanichammer.png"]= { ["x"]= 481, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/diamondskin.png"]= { + ["Art/2DArt/SkillIcons/passives/golemsblood.png"]= { ["x"]= 518, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/doomcast.png"]= { + ["Art/2DArt/SkillIcons/passives/grace.png"]= { ["x"]= 555, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/eagleeye.png"]= { + ["Art/2DArt/SkillIcons/passives/graveexpectations.png"]= { ["x"]= 592, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/eagletalons.png"]= { + ["Art/2DArt/SkillIcons/passives/graveintentions.png"]= { ["x"]= 629, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/elderpower.png"]= { + ["Art/2DArt/SkillIcons/passives/gravepact.png"]= { ["x"]= 666, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/elementalist.png"]= { + ["Art/2DArt/SkillIcons/passives/hammerblows.png"]= { ["x"]= 703, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/evasion.png"]= { + ["Art/2DArt/SkillIcons/passives/hatchetmaster.png"]= { ["x"]= 740, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/executioner.png"]= { + ["Art/2DArt/SkillIcons/passives/heartofthegladiator.png"]= { ["x"]= 777, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/expeditiousmunitions.png"]= { + ["Art/2DArt/SkillIcons/passives/heartpierce.png"]= { ["x"]= 814, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/fellingtheweak.png"]= { + ["Art/2DArt/SkillIcons/passives/heartseeker.png"]= { ["x"]= 851, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/fending.png"]= { + ["Art/2DArt/SkillIcons/passives/heavydraw.png"]= { ["x"]= 888, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/finesse.png"]= { + ["Art/2DArt/SkillIcons/passives/hellfire.png"]= { ["x"]= 925, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/firedamage.png"]= { + ["Art/2DArt/SkillIcons/passives/highexplosives.png"]= { + ["x"]= 962, + ["y"]= 1115, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/icebite.png"]= { ["x"]= 0, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/flameborn.png"]= { + ["Art/2DArt/SkillIcons/passives/iceheart.png"]= { ["x"]= 37, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/flaying.png"]= { + ["Art/2DArt/SkillIcons/passives/increased armor.png"]= { ["x"]= 74, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/foresight.png"]= { + ["Art/2DArt/SkillIcons/passives/influence.png"]= { ["x"]= 111, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/frostborn.png"]= { + ["Art/2DArt/SkillIcons/passives/innerforce.png"]= { ["x"]= 148, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/furybolts.png"]= { + ["Art/2DArt/SkillIcons/passives/ironwoodtotem.png"]= { ["x"]= 185, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/fussilade.png"]= { + ["Art/2DArt/SkillIcons/passives/kingofthehill.png"]= { ["x"]= 222, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/galvanichammer.png"]= { + ["Art/2DArt/SkillIcons/passives/lavalash.png"]= { ["x"]= 259, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/golemsblood.png"]= { + ["Art/2DArt/SkillIcons/passives/leadership.png"]= { ["x"]= 296, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/grace.png"]= { + ["Art/2DArt/SkillIcons/passives/legendaryswordsman.png"]= { ["x"]= 333, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/graveexpectations.png"]= { + ["Art/2DArt/SkillIcons/passives/life1.png"]= { ["x"]= 370, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/graveintentions.png"]= { + ["Art/2DArt/SkillIcons/passives/lifeleech.png"]= { ["x"]= 407, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/gravepact.png"]= { + ["Art/2DArt/SkillIcons/passives/lifeleechimmunity.png"]= { ["x"]= 444, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/hammerblows.png"]= { + ["Art/2DArt/SkillIcons/passives/lightningint.png"]= { ["x"]= 481, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/hatchetmaster.png"]= { + ["Art/2DArt/SkillIcons/passives/lordofthedead.png"]= { ["x"]= 518, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/heartofthegladiator.png"]= { + ["Art/2DArt/SkillIcons/passives/macedmg.png"]= { ["x"]= 555, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/heartpierce.png"]= { + ["Art/2DArt/SkillIcons/passives/manaconduit.png"]= { ["x"]= 592, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/heartseeker.png"]= { + ["Art/2DArt/SkillIcons/passives/masterfletcher.png"]= { ["x"]= 629, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/heavydraw.png"]= { + ["Art/2DArt/SkillIcons/passives/mastersapper.png"]= { ["x"]= 666, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/hellfire.png"]= { + ["Art/2DArt/SkillIcons/passives/masterywand.png"]= { ["x"]= 703, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/highexplosives.png"]= { + ["Art/2DArt/SkillIcons/passives/melding.png"]= { ["x"]= 740, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/icebite.png"]= { + ["Art/2DArt/SkillIcons/passives/mentalacuity.png"]= { ["x"]= 777, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/iceheart.png"]= { + ["Art/2DArt/SkillIcons/passives/minddrinker.png"]= { ["x"]= 814, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/increased armor.png"]= { + ["Art/2DArt/SkillIcons/passives/minionblockchance.png"]= { ["x"]= 851, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/influence.png"]= { + ["Art/2DArt/SkillIcons/passives/newcolddamage.png"]= { ["x"]= 888, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/innerforce.png"]= { + ["Art/2DArt/SkillIcons/passives/newenergyshield.png"]= { ["x"]= 925, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ironwoodtotem.png"]= { + ["Art/2DArt/SkillIcons/passives/newevadepercentage.png"]= { + ["x"]= 962, + ["y"]= 1152, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/newincreasedcritical.png"]= { ["x"]= 0, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/kingofthehill.png"]= { + ["Art/2DArt/SkillIcons/passives/newnewattackspeed.png"]= { ["x"]= 37, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/lavalash.png"]= { + ["Art/2DArt/SkillIcons/passives/newtitanicmight.png"]= { ["x"]= 74, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/leadership.png"]= { + ["Art/2DArt/SkillIcons/passives/nightstalker.png"]= { ["x"]= 111, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/legendaryswordsman.png"]= { + ["Art/2DArt/SkillIcons/passives/nimbleness.png"]= { ["x"]= 148, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/life1.png"]= { + ["Art/2DArt/SkillIcons/passives/oxblood.png"]= { ["x"]= 185, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/lifeleech.png"]= { + ["Art/2DArt/SkillIcons/passives/perfectaim.png"]= { ["x"]= 222, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/lifeleechimmunity.png"]= { + ["Art/2DArt/SkillIcons/passives/plusdexterity.png"]= { ["x"]= 259, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/lightningint.png"]= { + ["Art/2DArt/SkillIcons/passives/plusintelligence.png"]= { ["x"]= 296, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/lordofthedead.png"]= { + ["Art/2DArt/SkillIcons/passives/plusstrength.png"]= { ["x"]= 333, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/macedmg.png"]= { + ["Art/2DArt/SkillIcons/passives/potencyofwill.png"]= { ["x"]= 370, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/manaconduit.png"]= { + ["Art/2DArt/SkillIcons/passives/precision.png"]= { ["x"]= 407, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/masterfletcher.png"]= { + ["Art/2DArt/SkillIcons/passives/pyromaniac.png"]= { ["x"]= 444, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/mastersapper.png"]= { + ["Art/2DArt/SkillIcons/passives/quickstep.png"]= { ["x"]= 481, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/masterywand.png"]= { + ["Art/2DArt/SkillIcons/passives/razorsedge.png"]= { ["x"]= 518, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/melding.png"]= { + ["Art/2DArt/SkillIcons/passives/reaver.png"]= { ["x"]= 555, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/mentalacuity.png"]= { + ["Art/2DArt/SkillIcons/passives/revengeofthehunted.png"]= { ["x"]= 592, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/minddrinker.png"]= { + ["Art/2DArt/SkillIcons/passives/saboteur.png"]= { ["x"]= 629, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/minionblockchance.png"]= { + ["Art/2DArt/SkillIcons/passives/savant.png"]= { ["x"]= 666, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/newcolddamage.png"]= { + ["Art/2DArt/SkillIcons/passives/scissorblades.png"]= { ["x"]= 703, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/newenergyshield.png"]= { + ["Art/2DArt/SkillIcons/passives/serpentstance.png"]= { ["x"]= 740, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/newevadepercentage.png"]= { + ["Art/2DArt/SkillIcons/passives/shamsnisticfury.png"]= { ["x"]= 777, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/newincreasedcritical.png"]= { + ["Art/2DArt/SkillIcons/passives/shieldwall.png"]= { ["x"]= 814, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/newnewattackspeed.png"]= { + ["Art/2DArt/SkillIcons/passives/skullcracking.png"]= { ["x"]= 851, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/newtitanicmight.png"]= { + ["Art/2DArt/SkillIcons/passives/soulsyphon.png"]= { ["x"]= 888, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/nightstalker.png"]= { + ["Art/2DArt/SkillIcons/passives/sovereignty.png"]= { ["x"]= 925, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/nimbleness.png"]= { + ["Art/2DArt/SkillIcons/passives/sparkingattacks.png"]= { + ["x"]= 962, + ["y"]= 1189, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/stabbingcomeback.png"]= { ["x"]= 0, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/oxblood.png"]= { + ["Art/2DArt/SkillIcons/passives/staticshield.png"]= { ["x"]= 37, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/perfectaim.png"]= { + ["Art/2DArt/SkillIcons/passives/stormborn.png"]= { ["x"]= 74, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/plusdexterity.png"]= { + ["Art/2DArt/SkillIcons/passives/strongarm.png"]= { ["x"]= 111, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/plusintelligence.png"]= { + ["Art/2DArt/SkillIcons/passives/stunmace.png"]= { ["x"]= 148, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/plusstrength.png"]= { + ["Art/2DArt/SkillIcons/passives/stunstaff.png"]= { ["x"]= 185, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/potencyofwill.png"]= { + ["Art/2DArt/SkillIcons/passives/swagger.png"]= { ["x"]= 222, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/precision.png"]= { + ["Art/2DArt/SkillIcons/passives/swashbuckler.png"]= { ["x"]= 259, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/pyromaniac.png"]= { + ["Art/2DArt/SkillIcons/passives/talonsofmurder.png"]= { ["x"]= 296, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/quickstep.png"]= { + ["Art/2DArt/SkillIcons/passives/thickskin.png"]= { ["x"]= 333, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/razorsedge.png"]= { + ["Art/2DArt/SkillIcons/passives/throatseeker.png"]= { ["x"]= 370, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/reaver.png"]= { + ["Art/2DArt/SkillIcons/passives/titanicmight.png"]= { ["x"]= 407, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/revengeofthehunted.png"]= { + ["Art/2DArt/SkillIcons/passives/totemandbrandrange.png"]= { ["x"]= 444, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/saboteur.png"]= { + ["Art/2DArt/SkillIcons/passives/totemicmastery.png"]= { ["x"]= 481, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/savant.png"]= { + ["Art/2DArt/SkillIcons/passives/totemiczeal.png"]= { ["x"]= 518, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/scissorblades.png"]= { + ["Art/2DArt/SkillIcons/passives/trapsradius.png"]= { ["x"]= 555, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/serpentstance.png"]= { + ["Art/2DArt/SkillIcons/passives/trollblood.png"]= { ["x"]= 592, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/shamsnisticfury.png"]= { + ["Art/2DArt/SkillIcons/passives/volitilemines.png"]= { ["x"]= 629, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/shieldwall.png"]= { + ["Art/2DArt/SkillIcons/passives/wandslingersprowess.png"]= { ["x"]= 666, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/skullcracking.png"]= { + ["Art/2DArt/SkillIcons/passives/whirlingstaff.png"]= { ["x"]= 703, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/soulsyphon.png"]= { + ["Art/2DArt/SkillIcons/passives/wreckingball.png"]= { ["x"]= 740, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/sovereignty.png"]= { + ["Art/2DArt/SkillIcons/passives/Ascendants/Assassin.png"]= { ["x"]= 777, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/sparkingattacks.png"]= { + ["Art/2DArt/SkillIcons/passives/Ascendants/Berserker.png"]= { ["x"]= 814, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/stabbingcomeback.png"]= { + ["Art/2DArt/SkillIcons/passives/Ascendants/Champion.png"]= { ["x"]= 851, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/staticshield.png"]= { + ["Art/2DArt/SkillIcons/passives/Ascendants/Chieftain.png"]= { ["x"]= 888, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/stormborn.png"]= { + ["Art/2DArt/SkillIcons/passives/Ascendants/Deadeye.png"]= { ["x"]= 925, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/strongarm.png"]= { + ["Art/2DArt/SkillIcons/passives/Ascendants/Elementalist.png"]= { + ["x"]= 962, + ["y"]= 1226, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/Gladiator.png"]= { ["x"]= 0, ["y"]= 1263, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/stunmace.png"]= { + ["Art/2DArt/SkillIcons/passives/Ascendants/Guardian.png"]= { ["x"]= 37, ["y"]= 1263, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/stunstaff.png"]= { + ["Art/2DArt/SkillIcons/passives/Ascendants/Hierophant.png"]= { ["x"]= 74, ["y"]= 1263, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/swagger.png"]= { + ["Art/2DArt/SkillIcons/passives/Ascendants/Inquisitor.png"]= { ["x"]= 111, ["y"]= 1263, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/swashbuckler.png"]= { + ["Art/2DArt/SkillIcons/passives/Ascendants/Juggernaut.png"]= { ["x"]= 148, ["y"]= 1263, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/talonsofmurder.png"]= { + ["Art/2DArt/SkillIcons/passives/Ascendants/Necromancer.png"]= { ["x"]= 185, ["y"]= 1263, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/thickskin.png"]= { + ["Art/2DArt/SkillIcons/passives/Ascendants/Occultist.png"]= { ["x"]= 222, ["y"]= 1263, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/throatseeker.png"]= { + ["Art/2DArt/SkillIcons/passives/Ascendants/Pathfinder.png"]= { ["x"]= 259, ["y"]= 1263, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/titanicmight.png"]= { + ["Art/2DArt/SkillIcons/passives/Ascendants/Raider.png"]= { ["x"]= 296, ["y"]= 1263, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/totemandbrandrange.png"]= { + ["Art/2DArt/SkillIcons/passives/Ascendants/Saboteur.png"]= { ["x"]= 333, ["y"]= 1263, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/totemicmastery.png"]= { + ["Art/2DArt/SkillIcons/passives/Ascendants/Slayer.png"]= { ["x"]= 370, ["y"]= 1263, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/totemiczeal.png"]= { + ["Art/2DArt/SkillIcons/passives/Ascendants/Trickster.png"]= { ["x"]= 407, ["y"]= 1263, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/trapsradius.png"]= { + ["Art/2DArt/SkillIcons/passives/Assassin/Ambush.png"]= { ["x"]= 444, ["y"]= 1263, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/trollblood.png"]= { + ["Art/2DArt/SkillIcons/passives/Chieftain/TawhoaForestsStrength.png"]= { ["x"]= 481, ["y"]= 1263, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/volitilemines.png"]= { - ["x"]= 518, - ["y"]= 1263, - ["w"]= 37, - ["h"]= 37 - }, - ["Art/2DArt/SkillIcons/passives/wandslingersprowess.png"]= { - ["x"]= 555, - ["y"]= 1263, - ["w"]= 37, - ["h"]= 37 - }, - ["Art/2DArt/SkillIcons/passives/whirlingstaff.png"]= { - ["x"]= 592, - ["y"]= 1263, - ["w"]= 37, - ["h"]= 37 - }, - ["Art/2DArt/SkillIcons/passives/wreckingball.png"]= { - ["x"]= 629, - ["y"]= 1263, - ["w"]= 37, - ["h"]= 37 - }, ["Art/2DArt/SkillIcons/passives/HinekoraPassiveIcon1.png"]= { - ["x"]= 666, + ["x"]= 518, ["y"]= 1263, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/HinekoraPassiveIcon2.png"]= { - ["x"]= 703, + ["x"]= 555, ["y"]= 1263, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/HinekoraPassiveIcon3.png"]= { - ["x"]= 740, + ["x"]= 592, ["y"]= 1263, ["w"]= 37, ["h"]= 37 @@ -13977,8 +14229,8 @@ return { } }, ["keystoneInactive"]= { - ["filename"]= "https://web.poecdn.com/image/passive-skill/skills-disabled-3.jpg?ac7492dd", - ["w"]= 962, + ["filename"]= "https://web.poecdn.com/image/passive-skill/skills-disabled-3.jpg?94caf4e2", + ["w"]= 999, ["h"]= 1459, ["coords"]= { ["Art/2DArt/SkillIcons/passives/AnointOnlyKeystone.png"]= { @@ -14090,217 +14342,217 @@ return { ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/KeystoneEldritchBattery.png"]= { - ["x"]= 0, - ["y"]= 1353, + ["x"]= 936, + ["y"]= 1300, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/KeystoneElementalEquilibrium.png"]= { - ["x"]= 52, + ["x"]= 0, ["y"]= 1353, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/KeystoneElementalOverload.png"]= { - ["x"]= 104, + ["x"]= 52, ["y"]= 1353, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/KeystoneHexMaster.png"]= { - ["x"]= 156, + ["x"]= 104, ["y"]= 1353, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/KeystoneIronGrip.png"]= { - ["x"]= 208, + ["x"]= 156, ["y"]= 1353, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/KeystoneIronReflexes.png"]= { - ["x"]= 260, + ["x"]= 208, ["y"]= 1353, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/KeystoneIronWill.png"]= { - ["x"]= 312, + ["x"]= 260, ["y"]= 1353, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/KeystoneMinionInstability.png"]= { - ["x"]= 364, + ["x"]= 312, ["y"]= 1353, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/KeystoneNecromanticAegis.png"]= { - ["x"]= 416, + ["x"]= 364, ["y"]= 1353, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/KeystonePainAttunement.png"]= { - ["x"]= 468, + ["x"]= 416, ["y"]= 1353, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/KeystonePointBlankArcher.png"]= { - ["x"]= 520, + ["x"]= 468, ["y"]= 1353, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/KeystoneResoluteTechnique.png"]= { - ["x"]= 572, + ["x"]= 520, ["y"]= 1353, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/KeystoneUnwaveringStance.png"]= { - ["x"]= 624, + ["x"]= 572, ["y"]= 1353, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/Kineticism.png"]= { - ["x"]= 676, + ["x"]= 624, ["y"]= 1353, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/LoneMessenger.png"]= { - ["x"]= 728, + ["x"]= 676, ["y"]= 1353, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/MiracleMaker.png"]= { - ["x"]= 780, + ["x"]= 728, ["y"]= 1353, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/MomentofRespite.png"]= { - ["x"]= 832, + ["x"]= 780, ["y"]= 1353, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/NaturesPatience.png"]= { - ["x"]= 884, + ["x"]= 832, ["y"]= 1353, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/Occultist/EldrichBarrier.png"]= { - ["x"]= 0, - ["y"]= 1406, + ["x"]= 884, + ["y"]= 1353, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/Pitfighter.png"]= { - ["x"]= 52, - ["y"]= 1406, + ["x"]= 936, + ["y"]= 1353, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/PreciseTechnique.png"]= { - ["x"]= 104, + ["x"]= 0, ["y"]= 1406, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/Resilience.png"]= { - ["x"]= 156, + ["x"]= 52, ["y"]= 1406, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/RetaliationKeystone.png"]= { - ["x"]= 208, + ["x"]= 104, ["y"]= 1406, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/SacredBastionKeystone.png"]= { - ["x"]= 260, + ["x"]= 156, ["y"]= 1406, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/SecretOfAgony.png"]= { - ["x"]= 312, + ["x"]= 208, ["y"]= 1406, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/SupremeEgo.png"]= { - ["x"]= 364, + ["x"]= 260, ["y"]= 1406, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/TinctureKeystone1.png"]= { - ["x"]= 416, + ["x"]= 312, ["y"]= 1406, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/Trickster/AcrobaticWillpower.png"]= { - ["x"]= 468, + ["x"]= 364, ["y"]= 1406, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/VersatileCombatant.png"]= { - ["x"]= 520, + ["x"]= 416, ["y"]= 1406, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/VeteransAwareness.png"]= { - ["x"]= 572, + ["x"]= 468, ["y"]= 1406, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/WindDancer.png"]= { - ["x"]= 624, + ["x"]= 520, ["y"]= 1406, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/ghostreaver.png"]= { - ["x"]= 676, + ["x"]= 572, ["y"]= 1406, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/heroicspirit.png"]= { - ["x"]= 728, + ["x"]= 624, ["y"]= 1406, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/liferegentoenergyshield.png"]= { - ["x"]= 780, + ["x"]= 676, ["y"]= 1406, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/totemmax.png"]= { - ["x"]= 832, + ["x"]= 728, ["y"]= 1406, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/vaalpact.png"]= { - ["x"]= 884, + ["x"]= 780, ["y"]= 1406, ["w"]= 52, ["h"]= 53 @@ -17169,9 +17421,9 @@ return { } }, ["tattooActiveEffect"]= { - ["filename"]= "https://web.poecdn.com/image/passive-skill/tattoo-active-effect-3.png?3b0007d2", + ["filename"]= "https://web.poecdn.com/image/passive-skill/tattoo-active-effect-3.png?b8637bfd", ["w"]= 556, - ["h"]= 704, + ["h"]= 842, ["coords"]= { ["Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/ArohonguiTribePassiveBG.png"]= { ["x"]= 0, @@ -17191,65 +17443,77 @@ return { ["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/KeystoneHinekoraPassiveBG.png"]= { + ["x"]= { + 417, + 0 + }, + ["y"]= { + 0, + 552 + }, + ["w"]= { + 139, + 288 + }, + ["h"]= { + 138, + 290 + } }, - ["Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/NgamahuTribePassiveBG.png"]= { + ["Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KitavaTribePassiveBG.png"]= { ["x"]= 0, ["y"]= 138, ["w"]= 139, ["h"]= 138 }, - ["Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/RamakoTribePassiveBG.png"]= { + ["Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/NgamahuTribePassiveBG.png"]= { ["x"]= 139, ["y"]= 138, ["w"]= 139, ["h"]= 138 }, - ["Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/RongokuraiTribePassiveBG.png"]= { + ["Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/RamakoTribePassiveBG.png"]= { ["x"]= 278, ["y"]= 138, ["w"]= 139, ["h"]= 138 }, - ["Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/TasalioTribePassiveBG.png"]= { + ["Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/RongokuraiTribePassiveBG.png"]= { ["x"]= 417, ["y"]= 138, ["w"]= 139, ["h"]= 138 }, - ["Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/TawhoaTribePassiveBG.png"]= { + ["Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/TasalioTribePassiveBG.png"]= { ["x"]= 0, ["y"]= 276, ["w"]= 139, ["h"]= 138 }, - ["Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/TukohamaTribePassiveBG.png"]= { + ["Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/TawhoaTribePassiveBG.png"]= { ["x"]= 139, ["y"]= 276, ["w"]= 139, ["h"]= 138 }, - ["Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/ValakoTribePassiveBG.png"]= { + ["Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/TukohamaTribePassiveBG.png"]= { ["x"]= 278, ["y"]= 276, ["w"]= 139, ["h"]= 138 }, - ["Art/2DArt/UIImages/InGame/Village/RuneCraftingPassiveBG.png"]= { + ["Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/ValakoTribePassiveBG.png"]= { ["x"]= 417, ["y"]= 276, ["w"]= 139, ["h"]= 138 }, - ["Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png"]= { + ["Art/2DArt/UIImages/InGame/Village/RuneCraftingPassiveBG.png"]= { ["x"]= 0, ["y"]= 414, - ["w"]= 288, - ["h"]= 290 + ["w"]= 139, + ["h"]= 138 } } }, diff --git a/src/TreeData/3_28_ruthless/tattoo-active-effect-3.png b/src/TreeData/3_28_ruthless/tattoo-active-effect-3.png index 1dcfb6763eb..ed968d559f7 100644 Binary files a/src/TreeData/3_28_ruthless/tattoo-active-effect-3.png and b/src/TreeData/3_28_ruthless/tattoo-active-effect-3.png differ diff --git a/src/TreeData/3_28_ruthless/tree.lua b/src/TreeData/3_28_ruthless/tree.lua index 88b9178403f..3bb6ef7a1f4 100644 --- a/src/TreeData/3_28_ruthless/tree.lua +++ b/src/TreeData/3_28_ruthless/tree.lua @@ -14874,7 +14874,7 @@ return { }, [35069]= { ["skill"]= 35069, - ["name"]= " Lightning Damage", + ["name"]= "Lightning Damage", ["icon"]= "Art/2DArt/SkillIcons/passives/AtlasTrees/BreachBossClaspedHands.png", ["ascendancyName"]= "Breachlord", ["isBloodline"]= true, diff --git a/src/TreeData/3_28_ruthless_alternate/skills-3.jpg b/src/TreeData/3_28_ruthless_alternate/skills-3.jpg index 849a354f836..8cf716e1509 100644 Binary files a/src/TreeData/3_28_ruthless_alternate/skills-3.jpg and b/src/TreeData/3_28_ruthless_alternate/skills-3.jpg differ diff --git a/src/TreeData/3_28_ruthless_alternate/skills-disabled-3.jpg b/src/TreeData/3_28_ruthless_alternate/skills-disabled-3.jpg index de90f50dcc8..4f88dd42e36 100644 Binary files a/src/TreeData/3_28_ruthless_alternate/skills-disabled-3.jpg and b/src/TreeData/3_28_ruthless_alternate/skills-disabled-3.jpg differ diff --git a/src/TreeData/3_28_ruthless_alternate/sprites.lua b/src/TreeData/3_28_ruthless_alternate/sprites.lua index d629e41ba29..d18dd287028 100644 --- a/src/TreeData/3_28_ruthless_alternate/sprites.lua +++ b/src/TreeData/3_28_ruthless_alternate/sprites.lua @@ -46,8 +46,8 @@ return { } }, ["normalActive"]= { - ["filename"]= "https://web.poecdn.com/image/passive-skill/skills-3.jpg?24c5e3b9", - ["w"]= 962, + ["filename"]= "https://web.poecdn.com/image/passive-skill/skills-3.jpg?b1b66a3b", + ["w"]= 999, ["h"]= 1459, ["coords"]= { ["Art/2DArt/SkillIcons/passives/2handeddamage.png"]= { @@ -273,2539 +273,2539 @@ return { ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/AtlasTrees/BestiaryNode1.png"]= { + ["x"]= 962, + ["y"]= 0, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/BestiaryNotable4.png"]= { ["x"]= 0, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/AtlasTrees/BestiaryNotable4.png"]= { + ["Art/2DArt/SkillIcons/passives/AtlasTrees/BestiaryNotable5.png"]= { ["x"]= 26, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/AtlasTrees/BestiaryNotable5.png"]= { + ["Art/2DArt/SkillIcons/passives/AtlasTrees/BestiaryNotable6.png"]= { ["x"]= 52, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/AtlasTrees/BestiaryNotable6.png"]= { + ["Art/2DArt/SkillIcons/passives/AtlasTrees/BloodLineOlrothRune1.png"]= { ["x"]= 78, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/AtlasTrees/BloodLineOlrothRune1.png"]= { + ["Art/2DArt/SkillIcons/passives/AtlasTrees/BloodLineOlrothRune2.png"]= { ["x"]= 104, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/AtlasTrees/BloodLineOlrothRune2.png"]= { + ["Art/2DArt/SkillIcons/passives/AtlasTrees/BloodLineOlrothRune3.png"]= { ["x"]= 130, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/AtlasTrees/BloodLineOlrothRune3.png"]= { + ["Art/2DArt/SkillIcons/passives/AtlasTrees/BoldUndertaking.png"]= { ["x"]= 156, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/AtlasTrees/BoldUndertaking.png"]= { + ["Art/2DArt/SkillIcons/passives/AtlasTrees/BreachBossClaspedHands.png"]= { ["x"]= 182, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/AtlasTrees/BreachBossClaspedHands.png"]= { + ["Art/2DArt/SkillIcons/passives/AtlasTrees/DeliriumNode1.png"]= { ["x"]= 208, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/AtlasTrees/DeliriumNode1.png"]= { + ["Art/2DArt/SkillIcons/passives/AtlasTrees/ExpeditionNode1.png"]= { ["x"]= 234, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/AtlasTrees/ExpeditionNode1.png"]= { + ["Art/2DArt/SkillIcons/passives/AtlasTrees/HarbingerNotable3.png"]= { ["x"]= 260, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/AtlasTrees/HarbingerNotable3.png"]= { + ["Art/2DArt/SkillIcons/passives/AtlasTrees/LichNode1.png"]= { ["x"]= 286, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/AtlasTrees/LichNode1.png"]= { + ["Art/2DArt/SkillIcons/passives/AtlasTrees/LyciaNode1.png"]= { ["x"]= 312, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/AtlasTrees/LyciaNode1.png"]= { + ["Art/2DArt/SkillIcons/passives/AtlasTrees/MorePrimalWispsSmall.png"]= { ["x"]= 338, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/AtlasTrees/MorePrimalWispsSmall.png"]= { + ["Art/2DArt/SkillIcons/passives/AtlasTrees/MoreVividWispsSmall.png"]= { ["x"]= 364, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/AtlasTrees/MoreVividWispsSmall.png"]= { + ["Art/2DArt/SkillIcons/passives/AtlasTrees/MoreWildWispsSmall.png"]= { ["x"]= 390, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/AtlasTrees/MoreWildWispsSmall.png"]= { + ["Art/2DArt/SkillIcons/passives/AtlasTrees/PerandusNotable2.png"]= { ["x"]= 416, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/AtlasTrees/PerandusNotable2.png"]= { + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RitualBloodlineNode.png"]= { ["x"]= 442, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/AtlasTrees/RitualBloodlineNode.png"]= { + ["Art/2DArt/SkillIcons/passives/AtlasTrees/UltimatumNode1.png"]= { ["x"]= 468, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/AtlasTrees/UltimatumNode1.png"]= { + ["Art/2DArt/SkillIcons/passives/AtlasTrees/UltimatumNotable6.png"]= { ["x"]= 494, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/AtlasTrees/UltimatumNotable6.png"]= { + ["Art/2DArt/SkillIcons/passives/AtlasTrees/UltimatumNotableMonsters1.png"]= { ["x"]= 520, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/AtlasTrees/UltimatumNotableMonsters1.png"]= { + ["Art/2DArt/SkillIcons/passives/AtlasTrees/UltimatumNotableMonsters2.png"]= { ["x"]= 546, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/AtlasTrees/UltimatumNotableMonsters2.png"]= { + ["Art/2DArt/SkillIcons/passives/AtlasTrees/UltimatumNotableStoneCircle.png"]= { ["x"]= 572, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/AtlasTrees/UltimatumNotableStoneCircle.png"]= { + ["Art/2DArt/SkillIcons/passives/AttackBlindNode.png"]= { ["x"]= 598, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/AttackBlindNode.png"]= { + ["Art/2DArt/SkillIcons/passives/AttackDamangeAndEvasionNotableNode.png"]= { ["x"]= 624, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/AttackDamangeAndEvasionNotableNode.png"]= { + ["Art/2DArt/SkillIcons/passives/AttackPoisonNode.png"]= { ["x"]= 650, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/AttackPoisonNode.png"]= { + ["Art/2DArt/SkillIcons/passives/AuraEffectNode.png"]= { ["x"]= 676, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/AuraEffectNode.png"]= { + ["Art/2DArt/SkillIcons/passives/BannerAreaNode.png"]= { ["x"]= 702, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/BannerAreaNode.png"]= { + ["Art/2DArt/SkillIcons/passives/BannerDurationNode.png"]= { ["x"]= 728, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/BannerDurationNode.png"]= { + ["Art/2DArt/SkillIcons/passives/BannerEffectNode.png"]= { ["x"]= 754, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/BannerEffectNode.png"]= { + ["Art/2DArt/SkillIcons/passives/BannerResourceAreaNode.png"]= { ["x"]= 780, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/BannerResourceAreaNode.png"]= { + ["Art/2DArt/SkillIcons/passives/BeltimberBladeNode.png"]= { ["x"]= 806, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/BeltimberBladeNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Berserker/DmgAttackSpeed.png"]= { ["x"]= 832, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Berserker/DmgAttackSpeed.png"]= { + ["Art/2DArt/SkillIcons/passives/Berserker/DmgCrit.png"]= { ["x"]= 858, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Berserker/DmgCrit.png"]= { + ["Art/2DArt/SkillIcons/passives/Berserker/DmgLeech.png"]= { ["x"]= 884, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Berserker/DmgLeech.png"]= { + ["Art/2DArt/SkillIcons/passives/Berserker/DmgWarcry.png"]= { ["x"]= 910, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Berserker/DmgWarcry.png"]= { + ["Art/2DArt/SkillIcons/passives/BleedAndPoisonMitigateNode.png"]= { ["x"]= 936, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/BleedAndPoisonMitigateNode.png"]= { + ["Art/2DArt/SkillIcons/passives/BlockAttackDmgNode.png"]= { + ["x"]= 962, + ["y"]= 26, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/BlockSpellDmgNode.png"]= { ["x"]= 0, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/BlockAttackDmgNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Blood2.png"]= { ["x"]= 26, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/BlockSpellDmgNode.png"]= { + ["Art/2DArt/SkillIcons/passives/BluntInstrument.png"]= { ["x"]= 52, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Blood2.png"]= { + ["Art/2DArt/SkillIcons/passives/BowDamage.png"]= { ["x"]= 78, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/BluntInstrument.png"]= { + ["Art/2DArt/SkillIcons/passives/Brand1.png"]= { ["x"]= 104, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/BowDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/Brand2.png"]= { ["x"]= 130, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Brand1.png"]= { + ["Art/2DArt/SkillIcons/passives/BrandDmgNode.png"]= { ["x"]= 156, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Brand2.png"]= { + ["Art/2DArt/SkillIcons/passives/BrassDomeNode.png"]= { ["x"]= 182, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/BrandDmgNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Champion/AnEAttDamage.png"]= { ["x"]= 208, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/BrassDomeNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Champion/AnEAura.png"]= { ["x"]= 234, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Champion/AnEAttDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/Champion/AnEFortify.png"]= { ["x"]= 260, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Champion/AnEAura.png"]= { + ["Art/2DArt/SkillIcons/passives/Champion/AnETaunt.png"]= { ["x"]= 286, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Champion/AnEFortify.png"]= { + ["Art/2DArt/SkillIcons/passives/Champion/ImpalePassive.png"]= { ["x"]= 312, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Champion/AnETaunt.png"]= { + ["Art/2DArt/SkillIcons/passives/ChaosDamage.png"]= { ["x"]= 338, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Champion/ImpalePassive.png"]= { + ["Art/2DArt/SkillIcons/passives/ChaosDamageOverTimeNode.png"]= { ["x"]= 364, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/ChaosDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/ChaosDamagenode.png"]= { ["x"]= 390, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/ChaosDamageOverTimeNode.png"]= { + ["Art/2DArt/SkillIcons/passives/ChaosResistNode.png"]= { ["x"]= 416, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/ChaosDamagenode.png"]= { + ["Art/2DArt/SkillIcons/passives/ChaosResistNotable.png"]= { ["x"]= 442, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/ChaosResistNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Chieftain/LifeRegenFireDamage.png"]= { ["x"]= 468, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/ChaosResistNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Chieftain/LifeRegenStrength.png"]= { ["x"]= 494, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Chieftain/LifeRegenFireDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/Chieftain/LifeRegenTotemPlacementSpeed.png"]= { ["x"]= 520, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Chieftain/LifeRegenStrength.png"]= { + ["Art/2DArt/SkillIcons/passives/ClawCritStrikeChanceNode.png"]= { ["x"]= 546, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Chieftain/LifeRegenTotemPlacementSpeed.png"]= { + ["Art/2DArt/SkillIcons/passives/ColdAndFireHybridNode.png"]= { ["x"]= 572, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/ClawCritStrikeChanceNode.png"]= { + ["Art/2DArt/SkillIcons/passives/ColdDamageOverTimeNode.png"]= { ["x"]= 598, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/ColdAndFireHybridNode.png"]= { + ["Art/2DArt/SkillIcons/passives/ColdDamagenode.png"]= { ["x"]= 624, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/ColdDamageOverTimeNode.png"]= { + ["Art/2DArt/SkillIcons/passives/ColdResistNode.png"]= { ["x"]= 650, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/ColdDamagenode.png"]= { + ["Art/2DArt/SkillIcons/passives/CooldownWarcryNode1.png"]= { ["x"]= 676, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/ColdResistNode.png"]= { + ["Art/2DArt/SkillIcons/passives/CorpseDamage.png"]= { ["x"]= 702, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/CooldownWarcryNode1.png"]= { + ["Art/2DArt/SkillIcons/passives/CorpseLife.png"]= { ["x"]= 728, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/CorpseDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/CurseAreaofEffect.png"]= { ["x"]= 754, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/CorpseLife.png"]= { + ["Art/2DArt/SkillIcons/passives/CurseCastSpeed.png"]= { ["x"]= 780, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/CurseAreaofEffect.png"]= { + ["Art/2DArt/SkillIcons/passives/CurseDuration.png"]= { ["x"]= 806, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/CurseCastSpeed.png"]= { + ["Art/2DArt/SkillIcons/passives/CurseEffectNode.png"]= { ["x"]= 832, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/CurseDuration.png"]= { + ["Art/2DArt/SkillIcons/passives/CurseManaCost.png"]= { ["x"]= 858, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/CurseEffectNode.png"]= { + ["Art/2DArt/SkillIcons/passives/CurseManaReservation.png"]= { ["x"]= 884, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/CurseManaCost.png"]= { + ["Art/2DArt/SkillIcons/passives/CursemitigationclusterNode.png"]= { ["x"]= 910, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/CurseManaReservation.png"]= { + ["Art/2DArt/SkillIcons/passives/CybilsClawNode.png"]= { ["x"]= 936, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/CursemitigationclusterNode.png"]= { + ["Art/2DArt/SkillIcons/passives/DamageOverTime.png"]= { + ["x"]= 962, + ["y"]= 52, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/DamageOverTimeNode.png"]= { ["x"]= 0, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/CybilsClawNode.png"]= { + ["Art/2DArt/SkillIcons/passives/DeadEye/ProjectileDamageAccuracy.png"]= { ["x"]= 26, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/DamageOverTime.png"]= { + ["Art/2DArt/SkillIcons/passives/DeadEye/ProjectileDamageAttackSpeed.png"]= { ["x"]= 52, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/DamageOverTimeNode.png"]= { + ["Art/2DArt/SkillIcons/passives/DivineFury.png"]= { ["x"]= 78, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/DeadEye/ProjectileDamageAccuracy.png"]= { + ["Art/2DArt/SkillIcons/passives/DivineWrath.png"]= { ["x"]= 104, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/DeadEye/ProjectileDamageAttackSpeed.png"]= { + ["Art/2DArt/SkillIcons/passives/DmgHeraldSkillsNode.png"]= { ["x"]= 130, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/DivineFury.png"]= { + ["Art/2DArt/SkillIcons/passives/DmgWhenChannelSkillsNode.png"]= { ["x"]= 156, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/DivineWrath.png"]= { + ["Art/2DArt/SkillIcons/passives/DodgeAtksNode.png"]= { ["x"]= 182, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/DmgHeraldSkillsNode.png"]= { + ["Art/2DArt/SkillIcons/passives/DualWieldNodeDefensive.png"]= { ["x"]= 208, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/DmgWhenChannelSkillsNode.png"]= { + ["Art/2DArt/SkillIcons/passives/DualWieldNodeOffensive.png"]= { ["x"]= 234, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/DodgeAtksNode.png"]= { + ["Art/2DArt/SkillIcons/passives/DurationofMinionsNode.png"]= { ["x"]= 260, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/DualWieldNodeDefensive.png"]= { + ["Art/2DArt/SkillIcons/passives/ElementalDamagenode.png"]= { ["x"]= 286, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/DualWieldNodeOffensive.png"]= { + ["Art/2DArt/SkillIcons/passives/ElementalResistance2.png"]= { ["x"]= 312, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/DurationofMinionsNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Elementalist/ElementalDamageAttackCasteSpeed.png"]= { ["x"]= 338, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/ElementalDamagenode.png"]= { + ["Art/2DArt/SkillIcons/passives/Elementalist/ElementalDamageElementalResistances.png"]= { ["x"]= 364, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/ElementalResistance2.png"]= { + ["Art/2DArt/SkillIcons/passives/Elementalist/ElementalDamageFreezeShockIgnite.png"]= { ["x"]= 390, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Elementalist/ElementalDamageAttackCasteSpeed.png"]= { + ["Art/2DArt/SkillIcons/passives/EmpoweredAttackWarcryNode1.png"]= { ["x"]= 416, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Elementalist/ElementalDamageElementalResistances.png"]= { + ["Art/2DArt/SkillIcons/passives/EnergyShieldNode.png"]= { ["x"]= 442, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Elementalist/ElementalDamageFreezeShockIgnite.png"]= { + ["Art/2DArt/SkillIcons/passives/EnergyshieldLeechPassivessmall.png"]= { ["x"]= 468, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/EmpoweredAttackWarcryNode1.png"]= { + ["Art/2DArt/SkillIcons/passives/EvasionNode.png"]= { ["x"]= 494, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/EnergyShieldNode.png"]= { + ["Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.png"]= { ["x"]= 520, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/EnergyshieldLeechPassivessmall.png"]= { + ["Art/2DArt/SkillIcons/passives/FireDamageOverTimeNode.png"]= { ["x"]= 546, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/EvasionNode.png"]= { + ["Art/2DArt/SkillIcons/passives/FireDamagenode.png"]= { ["x"]= 572, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.png"]= { + ["Art/2DArt/SkillIcons/passives/FireResistNode.png"]= { ["x"]= 598, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/FireDamageOverTimeNode.png"]= { + ["Art/2DArt/SkillIcons/passives/FlaskDurationnode.png"]= { ["x"]= 624, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/FireDamagenode.png"]= { + ["Art/2DArt/SkillIcons/passives/FortifyNode.png"]= { ["x"]= 650, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/FireResistNode.png"]= { + ["Art/2DArt/SkillIcons/passives/GenericWarcryNode1.png"]= { ["x"]= 676, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/FlaskDurationnode.png"]= { + ["Art/2DArt/SkillIcons/passives/GenericWarcryNode2.png"]= { ["x"]= 702, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/FortifyNode.png"]= { + ["Art/2DArt/SkillIcons/passives/GenericWarcryNode3.png"]= { ["x"]= 728, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/GenericWarcryNode1.png"]= { + ["Art/2DArt/SkillIcons/passives/Gladiator/GLADBlockChance.png"]= { ["x"]= 754, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/GenericWarcryNode2.png"]= { + ["Art/2DArt/SkillIcons/passives/Gladiator/GLADOneHand.png"]= { ["x"]= 780, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/GenericWarcryNode3.png"]= { + ["Art/2DArt/SkillIcons/passives/GolemsNode.png"]= { ["x"]= 806, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Gladiator/GLADBlockChance.png"]= { + ["Art/2DArt/SkillIcons/passives/GraceoftheGoddessNode.png"]= { ["x"]= 832, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Gladiator/GLADOneHand.png"]= { + ["Art/2DArt/SkillIcons/passives/GreenPhysicalDamageNode.png"]= { ["x"]= 858, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/GolemsNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Guardian/ArmourEnergyMeleeDamage.png"]= { ["x"]= 884, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/GraceoftheGoddessNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Guardian/ArmourEnergyShieldDefenseFromShields.png"]= { ["x"]= 910, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/GreenPhysicalDamageNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Guardian/ArmourEnergyShieldManaPool.png"]= { ["x"]= 936, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Guardian/ArmourEnergyMeleeDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/Guardian/ArmourEnergyShieldStaves.png"]= { + ["x"]= 962, + ["y"]= 78, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Guardian/GuardianHallowingFlameNode.png"]= { ["x"]= 0, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Guardian/ArmourEnergyShieldDefenseFromShields.png"]= { + ["Art/2DArt/SkillIcons/passives/Guardian/Minion Damage Armour and Energy Shield.png"]= { ["x"]= 26, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Guardian/ArmourEnergyShieldManaPool.png"]= { + ["Art/2DArt/SkillIcons/passives/Guardian/TimeOfNeed.png"]= { ["x"]= 52, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Guardian/ArmourEnergyShieldStaves.png"]= { + ["Art/2DArt/SkillIcons/passives/HalfColdHalfLightning.png"]= { ["x"]= 78, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Guardian/GuardianHallowingFlameNode.png"]= { + ["Art/2DArt/SkillIcons/passives/HeartbreakerNode.png"]= { ["x"]= 104, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Guardian/Minion Damage Armour and Energy Shield.png"]= { + ["Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.png"]= { ["x"]= 130, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Guardian/TimeOfNeed.png"]= { + ["Art/2DArt/SkillIcons/passives/HeraldDamageNotable.png"]= { ["x"]= 156, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/HalfColdHalfLightning.png"]= { + ["Art/2DArt/SkillIcons/passives/HeraldReservationNode.png"]= { ["x"]= 182, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/HeartbreakerNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Hierophant/ManaRegen.png"]= { ["x"]= 208, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.png"]= { + ["Art/2DArt/SkillIcons/passives/IgniteBleedNode.png"]= { ["x"]= 234, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/HeraldDamageNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/ImapleNode.png"]= { ["x"]= 260, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/HeraldReservationNode.png"]= { + ["Art/2DArt/SkillIcons/passives/ImpaleNode2.png"]= { ["x"]= 286, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Hierophant/ManaRegen.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreaseCritChanceNode.png"]= { ["x"]= 312, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/IgniteBleedNode.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreaseMinionLifeNode.png"]= { ["x"]= 338, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/ImapleNode.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreasedAttackDamageNode.png"]= { ["x"]= 364, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/ImpaleNode2.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreasedManaCostNode.png"]= { ["x"]= 390, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/IncreaseCritChanceNode.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreasedMaximumLifeNode.png"]= { ["x"]= 416, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/IncreaseMinionLifeNode.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreasedMinionDamageNode.png"]= { ["x"]= 442, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/IncreasedAttackDamageNode.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreasedNonDamageAilmentNode.png"]= { ["x"]= 468, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/IncreasedManaCostNode.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreasedProjectileSpeedNode.png"]= { ["x"]= 494, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/IncreasedMaximumLifeNode.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreasedSpellDamageNode.png"]= { ["x"]= 520, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/IncreasedMinionDamageNode.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreasedWarcryNode.png"]= { ["x"]= 546, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/IncreasedNonDamageAilmentNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageAttackCasteSpeed.png"]= { ["x"]= 572, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/IncreasedProjectileSpeedNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageAvoidElementalStatusEffects.png"]= { ["x"]= 598, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/IncreasedSpellDamageNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageCasteSpeed.png"]= { ["x"]= 624, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/IncreasedWarcryNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageElementalPenetration.png"]= { ["x"]= 650, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageAttackCasteSpeed.png"]= { + ["Art/2DArt/SkillIcons/passives/JacktheaxeNode.png"]= { ["x"]= 676, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageAvoidElementalStatusEffects.png"]= { + ["Art/2DArt/SkillIcons/passives/Juggernaut/IncreasedArmourAttackDamage.png"]= { ["x"]= 702, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageCasteSpeed.png"]= { + ["Art/2DArt/SkillIcons/passives/Juggernaut/IncreasedArmourAttackSpeed.png"]= { ["x"]= 728, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageElementalPenetration.png"]= { + ["Art/2DArt/SkillIcons/passives/Juggernaut/IncreasedArmourLifeRegeneration.png"]= { ["x"]= 754, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/JacktheaxeNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Juggernaut/IncreasedArmourMovementSpeed.png"]= { ["x"]= 780, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Juggernaut/IncreasedArmourAttackDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/Juggernaut/IncreasedArmourStunDuration.png"]= { ["x"]= 806, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Juggernaut/IncreasedArmourAttackSpeed.png"]= { + ["Art/2DArt/SkillIcons/passives/Juggernaut/JuggernautArmourNotable.png"]= { ["x"]= 832, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Juggernaut/IncreasedArmourLifeRegeneration.png"]= { + ["Art/2DArt/SkillIcons/passives/KeystoneArmourMaster.png"]= { ["x"]= 858, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Juggernaut/IncreasedArmourMovementSpeed.png"]= { + ["Art/2DArt/SkillIcons/passives/KiloavaShieldNode.png"]= { ["x"]= 884, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Juggernaut/IncreasedArmourStunDuration.png"]= { + ["Art/2DArt/SkillIcons/passives/KitavasHungerNode.png"]= { ["x"]= 910, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Juggernaut/JuggernautArmourNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/LifeAndEnergyShield.png"]= { ["x"]= 936, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/KeystoneArmourMaster.png"]= { + ["Art/2DArt/SkillIcons/passives/LifeAndReducedManaCost.png"]= { + ["x"]= 962, + ["y"]= 104, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/LifeManaFlasksrecoverynode.png"]= { ["x"]= 0, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/KiloavaShieldNode.png"]= { + ["Art/2DArt/SkillIcons/passives/LifeRecoupNode.png"]= { ["x"]= 26, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/KitavasHungerNode.png"]= { + ["Art/2DArt/SkillIcons/passives/LifeandCurses.png"]= { ["x"]= 52, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/LifeAndEnergyShield.png"]= { + ["Art/2DArt/SkillIcons/passives/LifeandMana.png"]= { ["x"]= 78, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/LifeAndReducedManaCost.png"]= { + ["Art/2DArt/SkillIcons/passives/LightningDamagenode.png"]= { ["x"]= 104, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/LifeManaFlasksrecoverynode.png"]= { + ["Art/2DArt/SkillIcons/passives/LightningResistNode.png"]= { ["x"]= 130, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/LifeRecoupNode.png"]= { + ["Art/2DArt/SkillIcons/passives/MaataSceptreNode.png"]= { ["x"]= 156, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/LifeandCurses.png"]= { + ["Art/2DArt/SkillIcons/passives/MaceElemental.png"]= { ["x"]= 182, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/LifeandMana.png"]= { + ["Art/2DArt/SkillIcons/passives/ManaAndEnergyShield.png"]= { ["x"]= 208, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/LightningDamagenode.png"]= { + ["Art/2DArt/SkillIcons/passives/ManaLeechThemedNode.png"]= { ["x"]= 234, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/LightningResistNode.png"]= { + ["Art/2DArt/SkillIcons/passives/ManaandCurses2.png"]= { ["x"]= 260, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/MaataSceptreNode.png"]= { + ["Art/2DArt/SkillIcons/passives/MarkNode.png"]= { ["x"]= 286, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/MaceElemental.png"]= { + ["Art/2DArt/SkillIcons/passives/MasteryBlank.png"]= { ["x"]= 312, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/ManaAndEnergyShield.png"]= { + ["Art/2DArt/SkillIcons/passives/MawOfConquestNode.png"]= { ["x"]= 338, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/ManaLeechThemedNode.png"]= { + ["Art/2DArt/SkillIcons/passives/MaxManaNode.png"]= { ["x"]= 364, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/ManaandCurses2.png"]= { + ["Art/2DArt/SkillIcons/passives/MeleeAoENode.png"]= { ["x"]= 390, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/MarkNode.png"]= { + ["Art/2DArt/SkillIcons/passives/MeleeCriticalStrikeChanceNode.png"]= { ["x"]= 416, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/MasteryBlank.png"]= { + ["Art/2DArt/SkillIcons/passives/MeleeCriticalStrikeMultiplierNode.png"]= { ["x"]= 442, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/MawOfConquestNode.png"]= { + ["Art/2DArt/SkillIcons/passives/MeleeFireNode.png"]= { ["x"]= 468, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/MaxManaNode.png"]= { + ["Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.png"]= { ["x"]= 494, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/MeleeAoENode.png"]= { + ["Art/2DArt/SkillIcons/passives/MineManaReservationNode.png"]= { ["x"]= 520, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/MeleeCriticalStrikeChanceNode.png"]= { + ["Art/2DArt/SkillIcons/passives/MinionAccuracyDamage.png"]= { ["x"]= 546, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/MeleeCriticalStrikeMultiplierNode.png"]= { + ["Art/2DArt/SkillIcons/passives/MinionChaosResistanceNode.png"]= { ["x"]= 572, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/MeleeFireNode.png"]= { + ["Art/2DArt/SkillIcons/passives/MinionDmgHeraldSkillsNode.png"]= { ["x"]= 598, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.png"]= { + ["Art/2DArt/SkillIcons/passives/MinionElementalResistancesNode.png"]= { ["x"]= 624, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/MineManaReservationNode.png"]= { + ["Art/2DArt/SkillIcons/passives/MovementSpeedandEvasionPassive.png"]= { ["x"]= 650, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/MinionAccuracyDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/MysticRefractorNode.png"]= { ["x"]= 676, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/MinionChaosResistanceNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Necromancer/CorpseConsumptionNode.png"]= { ["x"]= 702, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/MinionDmgHeraldSkillsNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Necromancer/IncreasedMinionDamageIncreasedMinionLife.png"]= { ["x"]= 728, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/MinionElementalResistancesNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Necromancer/IncreasedMinionDamageIncreasedSkillDuration.png"]= { ["x"]= 754, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/MovementSpeedandEvasionPassive.png"]= { + ["Art/2DArt/SkillIcons/passives/Necromancer/ManaNode.png"]= { ["x"]= 780, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/MysticRefractorNode.png"]= { + ["Art/2DArt/SkillIcons/passives/NodeAxeandSwordDamage.png"]= { ["x"]= 806, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Necromancer/CorpseConsumptionNode.png"]= { + ["Art/2DArt/SkillIcons/passives/NodeBowDamage.png"]= { ["x"]= 832, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Necromancer/IncreasedMinionDamageIncreasedMinionLife.png"]= { + ["Art/2DArt/SkillIcons/passives/NodeDaggerandClawDamage.png"]= { ["x"]= 858, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Necromancer/IncreasedMinionDamageIncreasedSkillDuration.png"]= { + ["Art/2DArt/SkillIcons/passives/NodeDualWieldingDamage.png"]= { ["x"]= 884, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Necromancer/ManaNode.png"]= { + ["Art/2DArt/SkillIcons/passives/NodeHoldingShieldDamage.png"]= { ["x"]= 910, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/NodeAxeandSwordDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/NodeMaceandStaffDamage.png"]= { ["x"]= 936, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/NodeBowDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/NodeTwoHandedMeleeDamage.png"]= { + ["x"]= 962, + ["y"]= 130, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/NodeWandDamage.png"]= { ["x"]= 0, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/NodeDaggerandClawDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/Occultist/EnergyShieldChaos.png"]= { ["x"]= 26, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/NodeDualWieldingDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/Occultist/EnergyShieldCold.png"]= { ["x"]= 52, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/NodeHoldingShieldDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/Occultist/IncreasedEnergyShieldAttackAndCastSpeed.png"]= { ["x"]= 78, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/NodeMaceandStaffDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/Occultist/IncreasedEnergyShieldCriticalStrikeChance.png"]= { ["x"]= 104, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/NodeTwoHandedMeleeDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/Occultist/IncreasedEnergyShieldManaReservation.png"]= { ["x"]= 130, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/NodeWandDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/Occultist/IncreasedEnergyShieldMaximumMana.png"]= { ["x"]= 156, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Occultist/EnergyShieldChaos.png"]= { + ["Art/2DArt/SkillIcons/passives/OneHandedPhysicalAndLeechNode.png"]= { ["x"]= 182, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Occultist/EnergyShieldCold.png"]= { + ["Art/2DArt/SkillIcons/passives/OneHandedPhysicalAndLeechNotable.png"]= { ["x"]= 208, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Occultist/IncreasedEnergyShieldAttackAndCastSpeed.png"]= { + ["Art/2DArt/SkillIcons/passives/PathFinder/FlaskEffectDamageOverTime.png"]= { ["x"]= 234, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Occultist/IncreasedEnergyShieldCriticalStrikeChance.png"]= { + ["Art/2DArt/SkillIcons/passives/PathFinder/FlaskEffectElementalResistance.png"]= { ["x"]= 260, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Occultist/IncreasedEnergyShieldManaReservation.png"]= { + ["Art/2DArt/SkillIcons/passives/PathFinder/FlaskEffectFlaskDuration.png"]= { ["x"]= 286, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Occultist/IncreasedEnergyShieldMaximumMana.png"]= { + ["Art/2DArt/SkillIcons/passives/PhysicalDamageNode.png"]= { ["x"]= 312, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/OneHandedPhysicalAndLeechNode.png"]= { + ["Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.png"]= { ["x"]= 338, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/OneHandedPhysicalAndLeechNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimenode3.png"]= { ["x"]= 364, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/PathFinder/FlaskEffectDamageOverTime.png"]= { + ["Art/2DArt/SkillIcons/passives/PhysicalDamagenode2.png"]= { ["x"]= 390, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/PathFinder/FlaskEffectElementalResistance.png"]= { + ["Art/2DArt/SkillIcons/passives/PhysicalandChaosDamage.png"]= { ["x"]= 416, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/PathFinder/FlaskEffectFlaskDuration.png"]= { + ["Art/2DArt/SkillIcons/passives/Poison.png"]= { ["x"]= 442, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/PhysicalDamageNode.png"]= { + ["Art/2DArt/SkillIcons/passives/PoisonSpellsNode.png"]= { ["x"]= 468, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Primalist/PrimalistNode.png"]= { ["x"]= 494, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimenode3.png"]= { + ["Art/2DArt/SkillIcons/passives/PrimordialCaneNode.png"]= { ["x"]= 520, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/PhysicalDamagenode2.png"]= { + ["Art/2DArt/SkillIcons/passives/ProjectileDmgNode.png"]= { ["x"]= 546, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/PhysicalandChaosDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/ProjectilesNode.png"]= { ["x"]= 572, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Poison.png"]= { + ["Art/2DArt/SkillIcons/passives/ProjectilesNode2.png"]= { ["x"]= 598, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/PoisonSpellsNode.png"]= { + ["Art/2DArt/SkillIcons/passives/ProsperosProtectionNode.png"]= { ["x"]= 624, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Primalist/PrimalistNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Rage.png"]= { ["x"]= 650, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/PrimordialCaneNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Raider/IncreasedElementalDamage.png"]= { ["x"]= 676, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/ProjectileDmgNode.png"]= { + ["Art/2DArt/SkillIcons/passives/RangedTotemAttackSpeed.png"]= { ["x"]= 702, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/ProjectilesNode.png"]= { + ["Art/2DArt/SkillIcons/passives/RangedTotemDamage.png"]= { ["x"]= 728, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/ProjectilesNode2.png"]= { + ["Art/2DArt/SkillIcons/passives/RedAttackSmallPassive.png"]= { ["x"]= 754, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/ProsperosProtectionNode.png"]= { + ["Art/2DArt/SkillIcons/passives/ReducedManaCostNode.png"]= { ["x"]= 780, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Rage.png"]= { + ["Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.png"]= { ["x"]= 806, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Raider/IncreasedElementalDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/RetaliationNode1.png"]= { ["x"]= 832, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/RangedTotemAttackSpeed.png"]= { + ["Art/2DArt/SkillIcons/passives/RetaliationNode2.png"]= { ["x"]= 858, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/RangedTotemDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/RetaliationNode3.png"]= { ["x"]= 884, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/RedAttackSmallPassive.png"]= { + ["Art/2DArt/SkillIcons/passives/RetaliationNode4.png"]= { ["x"]= 910, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/ReducedManaCostNode.png"]= { + ["Art/2DArt/SkillIcons/passives/RetaliationNode5.png"]= { ["x"]= 936, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Saboteur/ElementalDamageElementalResistance.png"]= { + ["x"]= 962, + ["y"]= 156, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Saboteur/ElementalDamageMines.png"]= { ["x"]= 0, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/RetaliationNode1.png"]= { + ["Art/2DArt/SkillIcons/passives/Saboteur/ElementalDamageMovementSpeed.png"]= { ["x"]= 26, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/RetaliationNode2.png"]= { + ["Art/2DArt/SkillIcons/passives/SareshBloodlineNode.png"]= { ["x"]= 52, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/RetaliationNode3.png"]= { + ["Art/2DArt/SkillIcons/passives/SharpandBrittle.png"]= { ["x"]= 78, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/RetaliationNode4.png"]= { + ["Art/2DArt/SkillIcons/passives/ShieldAttackDamage.png"]= { ["x"]= 104, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/RetaliationNode5.png"]= { + ["Art/2DArt/SkillIcons/passives/ShieldNodeOffensive.png"]= { ["x"]= 130, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Saboteur/ElementalDamageElementalResistance.png"]= { + ["Art/2DArt/SkillIcons/passives/Slayer/2HdmgAOE.png"]= { ["x"]= 156, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Saboteur/ElementalDamageMines.png"]= { + ["Art/2DArt/SkillIcons/passives/Slayer/2HdmgCritStrikeMultiplier.png"]= { ["x"]= 182, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Saboteur/ElementalDamageMovementSpeed.png"]= { + ["Art/2DArt/SkillIcons/passives/Slayer/2HdmgFrenzyEnduranceCharge.png"]= { ["x"]= 208, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/SareshBloodlineNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Slayer/2HdmgLeech.png"]= { ["x"]= 234, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/SharpandBrittle.png"]= { + ["Art/2DArt/SkillIcons/passives/Slayer/2HdmgSpeed.png"]= { ["x"]= 260, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/ShieldAttackDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/SpeedWarcryNode1.png"]= { ["x"]= 286, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/ShieldNodeOffensive.png"]= { + ["Art/2DArt/SkillIcons/passives/SpellMultiplyer2.png"]= { ["x"]= 312, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Slayer/2HdmgAOE.png"]= { + ["Art/2DArt/SkillIcons/passives/SpellSuppresionNode.png"]= { ["x"]= 338, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Slayer/2HdmgCritStrikeMultiplier.png"]= { + ["Art/2DArt/SkillIcons/passives/SpellSuppressionEnergyShield.png"]= { ["x"]= 364, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Slayer/2HdmgFrenzyEnduranceCharge.png"]= { + ["Art/2DArt/SkillIcons/passives/SpellSuppressionLifeFlasks.png"]= { ["x"]= 390, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Slayer/2HdmgLeech.png"]= { + ["Art/2DArt/SkillIcons/passives/StaffNodeDefensive.png"]= { ["x"]= 416, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Slayer/2HdmgSpeed.png"]= { + ["Art/2DArt/SkillIcons/passives/StaffNodeOffensive.png"]= { ["x"]= 442, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/SpeedWarcryNode1.png"]= { + ["Art/2DArt/SkillIcons/passives/StanceSmallPassive.png"]= { ["x"]= 468, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/SpellMultiplyer2.png"]= { + ["Art/2DArt/SkillIcons/passives/StancesNode.png"]= { ["x"]= 494, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/SpellSuppresionNode.png"]= { + ["Art/2DArt/SkillIcons/passives/StrikeRangeNode.png"]= { ["x"]= 520, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/SpellSuppressionEnergyShield.png"]= { + ["Art/2DArt/SkillIcons/passives/TearOfPurityNode.png"]= { ["x"]= 546, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/SpellSuppressionLifeFlasks.png"]= { + ["Art/2DArt/SkillIcons/passives/TerminusEstNode.png"]= { ["x"]= 572, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/StaffNodeDefensive.png"]= { + ["Art/2DArt/SkillIcons/passives/TheBurdenOfTruthNode.png"]= { ["x"]= 598, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/StaffNodeOffensive.png"]= { + ["Art/2DArt/SkillIcons/passives/TheBurdenofShadowsNode.png"]= { ["x"]= 624, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/StanceSmallPassive.png"]= { + ["Art/2DArt/SkillIcons/passives/TinctureFlaskNode1.png"]= { ["x"]= 650, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/StancesNode.png"]= { + ["Art/2DArt/SkillIcons/passives/TinctureNode1.png"]= { ["x"]= 676, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/StrikeRangeNode.png"]= { + ["Art/2DArt/SkillIcons/passives/TinctureNode2.png"]= { ["x"]= 702, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/TearOfPurityNode.png"]= { + ["Art/2DArt/SkillIcons/passives/TinctureNode3.png"]= { ["x"]= 728, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/TerminusEstNode.png"]= { + ["Art/2DArt/SkillIcons/passives/TotemDmgNode.png"]= { ["x"]= 754, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/TheBurdenOfTruthNode.png"]= { + ["Art/2DArt/SkillIcons/passives/TrapAndMineDmgNode.png"]= { ["x"]= 780, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/TheBurdenofShadowsNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Trickster/DefensiveNodeTrickster.png"]= { ["x"]= 806, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/TinctureFlaskNode1.png"]= { + ["Art/2DArt/SkillIcons/passives/Trickster/OffensiveNodeTrickster.png"]= { ["x"]= 832, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/TinctureNode1.png"]= { + ["Art/2DArt/SkillIcons/passives/VersusoBootsNode.png"]= { ["x"]= 858, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/TinctureNode2.png"]= { + ["Art/2DArt/SkillIcons/passives/VictariosJacketNode.png"]= { ["x"]= 884, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/TinctureNode3.png"]= { + ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanCurses2.png"]= { ["x"]= 910, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/TotemDmgNode.png"]= { + ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanNode.png"]= { ["x"]= 936, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/TrapAndMineDmgNode.png"]= { + ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanSpecialCurse1.png"]= { + ["x"]= 962, + ["y"]= 182, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanSpecialCurse2.png"]= { ["x"]= 0, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Trickster/DefensiveNodeTrickster.png"]= { + ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanSpecialCurse3.png"]= { ["x"]= 26, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Trickster/OffensiveNodeTrickster.png"]= { + ["Art/2DArt/SkillIcons/passives/WandCritical.png"]= { ["x"]= 52, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/VersusoBootsNode.png"]= { + ["Art/2DArt/SkillIcons/passives/WandSpeedAccuracyNode.png"]= { ["x"]= 78, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/VictariosJacketNode.png"]= { + ["Art/2DArt/SkillIcons/passives/WarCryCooldown.png"]= { ["x"]= 104, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanCurses2.png"]= { + ["Art/2DArt/SkillIcons/passives/WarcryBuffEffectNotable.png"]= { ["x"]= 130, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Warden/SpellSuppressionEvasion.png"]= { ["x"]= 156, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanSpecialCurse1.png"]= { + ["Art/2DArt/SkillIcons/passives/Warden/TincturesNode.png"]= { ["x"]= 182, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanSpecialCurse2.png"]= { + ["Art/2DArt/SkillIcons/passives/Warden/WardenNode.png"]= { ["x"]= 208, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanSpecialCurse3.png"]= { + ["Art/2DArt/SkillIcons/passives/Warden/WardenTracking.png"]= { ["x"]= 234, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/WandCritical.png"]= { + ["Art/2DArt/SkillIcons/passives/WarpedTimepieceNode.png"]= { ["x"]= 260, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/WandSpeedAccuracyNode.png"]= { + ["Art/2DArt/SkillIcons/passives/WidowhailBowNode.png"]= { ["x"]= 286, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/WarCryCooldown.png"]= { + ["Art/2DArt/SkillIcons/passives/accuracy.png"]= { ["x"]= 312, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/WarcryBuffEffectNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/accuracy2h.png"]= { ["x"]= 338, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Warden/SpellSuppressionEvasion.png"]= { + ["Art/2DArt/SkillIcons/passives/accuracydex.png"]= { ["x"]= 364, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Warden/TincturesNode.png"]= { + ["Art/2DArt/SkillIcons/passives/accuracysword.png"]= { ["x"]= 390, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Warden/WardenNode.png"]= { + ["Art/2DArt/SkillIcons/passives/arcaneradience.png"]= { ["x"]= 416, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Warden/WardenTracking.png"]= { + ["Art/2DArt/SkillIcons/passives/areaofeffect.png"]= { ["x"]= 442, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/WarpedTimepieceNode.png"]= { + ["Art/2DArt/SkillIcons/passives/attackspeed.png"]= { ["x"]= 468, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/WidowhailBowNode.png"]= { + ["Art/2DArt/SkillIcons/passives/attackspeed2h.png"]= { ["x"]= 494, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/accuracy.png"]= { + ["Art/2DArt/SkillIcons/passives/attackspeedaxe.png"]= { ["x"]= 520, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/accuracy2h.png"]= { + ["Art/2DArt/SkillIcons/passives/attackspeedbow.png"]= { ["x"]= 546, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/accuracydex.png"]= { + ["Art/2DArt/SkillIcons/passives/attackspeedclaw.png"]= { ["x"]= 572, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/accuracysword.png"]= { + ["Art/2DArt/SkillIcons/passives/attackspeeddagger.png"]= { ["x"]= 598, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/arcaneradience.png"]= { + ["Art/2DArt/SkillIcons/passives/attackspeeddual.png"]= { ["x"]= 624, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/areaofeffect.png"]= { + ["Art/2DArt/SkillIcons/passives/attackspeedmace.png"]= { ["x"]= 650, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/attackspeed.png"]= { + ["Art/2DArt/SkillIcons/passives/attackspeedsworddex.png"]= { ["x"]= 676, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/attackspeed2h.png"]= { + ["Art/2DArt/SkillIcons/passives/auraareaofeffect.png"]= { ["x"]= 702, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/attackspeedaxe.png"]= { + ["Art/2DArt/SkillIcons/passives/auraeffect.png"]= { ["x"]= 728, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/attackspeedbow.png"]= { + ["Art/2DArt/SkillIcons/passives/avoidburning.png"]= { ["x"]= 754, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/attackspeedclaw.png"]= { + ["Art/2DArt/SkillIcons/passives/avoidchilling.png"]= { ["x"]= 780, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/attackspeeddagger.png"]= { + ["Art/2DArt/SkillIcons/passives/axedmgspeed.png"]= { ["x"]= 806, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/attackspeeddual.png"]= { + ["Art/2DArt/SkillIcons/passives/blankDex.png"]= { ["x"]= 832, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/attackspeedmace.png"]= { + ["Art/2DArt/SkillIcons/passives/blankInt.png"]= { ["x"]= 858, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/attackspeedsworddex.png"]= { + ["Art/2DArt/SkillIcons/passives/blankStr.png"]= { ["x"]= 884, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/auraareaofeffect.png"]= { + ["Art/2DArt/SkillIcons/passives/blastradius.png"]= { ["x"]= 910, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/auraeffect.png"]= { + ["Art/2DArt/SkillIcons/passives/blockstaff.png"]= { ["x"]= 936, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/avoidburning.png"]= { + ["Art/2DArt/SkillIcons/passives/blockstr.png"]= { + ["x"]= 962, + ["y"]= 208, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/castavoidinterruption.png"]= { ["x"]= 0, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/avoidchilling.png"]= { + ["Art/2DArt/SkillIcons/passives/castspeed.png"]= { ["x"]= 26, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/axedmgspeed.png"]= { + ["Art/2DArt/SkillIcons/passives/chargedex.png"]= { ["x"]= 52, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/blankDex.png"]= { + ["Art/2DArt/SkillIcons/passives/chargeint.png"]= { ["x"]= 78, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/blankInt.png"]= { + ["Art/2DArt/SkillIcons/passives/chargestr.png"]= { ["x"]= 104, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/blankStr.png"]= { + ["Art/2DArt/SkillIcons/passives/clawmasterydex.png"]= { ["x"]= 130, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/blastradius.png"]= { + ["Art/2DArt/SkillIcons/passives/clustersLinknode1.png"]= { ["x"]= 156, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/blockstaff.png"]= { + ["Art/2DArt/SkillIcons/passives/clustersLinknode2.png"]= { ["x"]= 182, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/blockstr.png"]= { + ["Art/2DArt/SkillIcons/passives/colddamage.png"]= { ["x"]= 208, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/castavoidinterruption.png"]= { + ["Art/2DArt/SkillIcons/passives/coldresist.png"]= { ["x"]= 234, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/castspeed.png"]= { + ["Art/2DArt/SkillIcons/passives/criticalbow.png"]= { ["x"]= 260, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/chargedex.png"]= { + ["Art/2DArt/SkillIcons/passives/criticalclaw.png"]= { ["x"]= 286, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/chargeint.png"]= { + ["Art/2DArt/SkillIcons/passives/criticaldaggerdex.png"]= { ["x"]= 312, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/chargestr.png"]= { + ["Art/2DArt/SkillIcons/passives/criticaldaggerint.png"]= { ["x"]= 338, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/clawmasterydex.png"]= { + ["Art/2DArt/SkillIcons/passives/criticalstrikechance.png"]= { ["x"]= 364, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/clustersLinknode1.png"]= { + ["Art/2DArt/SkillIcons/passives/criticalstrikechance2.png"]= { ["x"]= 390, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/clustersLinknode2.png"]= { + ["Art/2DArt/SkillIcons/passives/criticalstrikemultiplier.png"]= { ["x"]= 416, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/colddamage.png"]= { + ["Art/2DArt/SkillIcons/passives/criticalstrikemultiplier2.png"]= { ["x"]= 442, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/coldresist.png"]= { + ["Art/2DArt/SkillIcons/passives/critstrchnc.png"]= { ["x"]= 468, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/criticalbow.png"]= { + ["Art/2DArt/SkillIcons/passives/crystalskin.png"]= { ["x"]= 494, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/criticalclaw.png"]= { + ["Art/2DArt/SkillIcons/passives/damage.png"]= { ["x"]= 520, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/criticaldaggerdex.png"]= { + ["Art/2DArt/SkillIcons/passives/damage_blue.png"]= { ["x"]= 546, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/criticaldaggerint.png"]= { + ["Art/2DArt/SkillIcons/passives/damageaxe.png"]= { ["x"]= 572, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/criticalstrikechance.png"]= { + ["Art/2DArt/SkillIcons/passives/damagedualwield.png"]= { ["x"]= 598, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/criticalstrikechance2.png"]= { + ["Art/2DArt/SkillIcons/passives/damagedualwieldgreen.png"]= { ["x"]= 624, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/criticalstrikemultiplier.png"]= { + ["Art/2DArt/SkillIcons/passives/damagemelee.png"]= { ["x"]= 650, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/criticalstrikemultiplier2.png"]= { + ["Art/2DArt/SkillIcons/passives/damagespells.png"]= { ["x"]= 676, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/critstrchnc.png"]= { + ["Art/2DArt/SkillIcons/passives/damagestaff.png"]= { ["x"]= 702, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/crystalskin.png"]= { + ["Art/2DArt/SkillIcons/passives/damagesword.png"]= { ["x"]= 728, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/damage.png"]= { + ["Art/2DArt/SkillIcons/passives/dmgreduction.png"]= { ["x"]= 754, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/damage_blue.png"]= { + ["Art/2DArt/SkillIcons/passives/dualwieldaccuracy.png"]= { ["x"]= 780, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/damageaxe.png"]= { + ["Art/2DArt/SkillIcons/passives/dualwieldblock.png"]= { ["x"]= 806, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/damagedualwield.png"]= { + ["Art/2DArt/SkillIcons/passives/elementaldamage.png"]= { ["x"]= 832, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/damagedualwieldgreen.png"]= { + ["Art/2DArt/SkillIcons/passives/energyshield.png"]= { ["x"]= 858, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/damagemelee.png"]= { + ["Art/2DArt/SkillIcons/passives/evade.png"]= { ["x"]= 884, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/damagespells.png"]= { + ["Art/2DArt/SkillIcons/passives/evadepercentage.png"]= { ["x"]= 910, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/damagestaff.png"]= { + ["Art/2DArt/SkillIcons/passives/evasion.png"]= { ["x"]= 936, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/damagesword.png"]= { + ["Art/2DArt/SkillIcons/passives/firedamage.png"]= { + ["x"]= 962, + ["y"]= 234, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/firedamageint.png"]= { ["x"]= 0, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/dmgreduction.png"]= { + ["Art/2DArt/SkillIcons/passives/firedamagestr.png"]= { ["x"]= 26, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/dualwieldaccuracy.png"]= { + ["Art/2DArt/SkillIcons/passives/fireresist.png"]= { ["x"]= 52, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/dualwieldblock.png"]= { + ["Art/2DArt/SkillIcons/passives/flaskdex.png"]= { ["x"]= 78, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/elementaldamage.png"]= { + ["Art/2DArt/SkillIcons/passives/flaskint.png"]= { ["x"]= 104, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/energyshield.png"]= { + ["Art/2DArt/SkillIcons/passives/flaskstr.png"]= { ["x"]= 130, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/evade.png"]= { + ["Art/2DArt/SkillIcons/passives/increased armor.png"]= { ["x"]= 156, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/evadepercentage.png"]= { + ["Art/2DArt/SkillIcons/passives/increasedarmorandlife.png"]= { ["x"]= 182, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/evasion.png"]= { + ["Art/2DArt/SkillIcons/passives/increasedrunspeeddex.png"]= { ["x"]= 208, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/firedamage.png"]= { + ["Art/2DArt/SkillIcons/passives/innerforce.png"]= { ["x"]= 234, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/firedamageint.png"]= { + ["Art/2DArt/SkillIcons/passives/knockback.png"]= { ["x"]= 260, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/firedamagestr.png"]= { + ["Art/2DArt/SkillIcons/passives/life1.png"]= { ["x"]= 286, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/fireresist.png"]= { + ["Art/2DArt/SkillIcons/passives/lifegainpertarget.png"]= { ["x"]= 312, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/flaskdex.png"]= { + ["Art/2DArt/SkillIcons/passives/lifeleech.png"]= { ["x"]= 338, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/flaskint.png"]= { + ["Art/2DArt/SkillIcons/passives/lifemana.png"]= { ["x"]= 364, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/flaskstr.png"]= { + ["Art/2DArt/SkillIcons/passives/lifepercentage.png"]= { ["x"]= 390, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/increased armor.png"]= { + ["Art/2DArt/SkillIcons/passives/lightningdex.png"]= { ["x"]= 416, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/increasedarmorandlife.png"]= { + ["Art/2DArt/SkillIcons/passives/lightningint.png"]= { ["x"]= 442, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/increasedrunspeeddex.png"]= { + ["Art/2DArt/SkillIcons/passives/lightningstr.png"]= { ["x"]= 468, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/innerforce.png"]= { + ["Art/2DArt/SkillIcons/passives/macecritdmgspeed.png"]= { ["x"]= 494, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/knockback.png"]= { + ["Art/2DArt/SkillIcons/passives/macedmg.png"]= { ["x"]= 520, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/life1.png"]= { + ["Art/2DArt/SkillIcons/passives/mana.png"]= { ["x"]= 546, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/lifegainpertarget.png"]= { + ["Art/2DArt/SkillIcons/passives/manaregeneration.png"]= { ["x"]= 572, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/lifeleech.png"]= { + ["Art/2DArt/SkillIcons/passives/manareservationreduction.png"]= { ["x"]= 598, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/lifemana.png"]= { + ["Art/2DArt/SkillIcons/passives/manastr.png"]= { ["x"]= 624, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/lifepercentage.png"]= { + ["Art/2DArt/SkillIcons/passives/masterydaggerdex.png"]= { ["x"]= 650, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/lightningdex.png"]= { + ["Art/2DArt/SkillIcons/passives/masterysword.png"]= { ["x"]= 676, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/lightningint.png"]= { + ["Art/2DArt/SkillIcons/passives/masterywand.png"]= { ["x"]= 702, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/lightningstr.png"]= { + ["Art/2DArt/SkillIcons/passives/meleeattackspeed.png"]= { ["x"]= 728, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/macecritdmgspeed.png"]= { + ["Art/2DArt/SkillIcons/passives/minionattackspeed.png"]= { ["x"]= 754, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/macedmg.png"]= { + ["Art/2DArt/SkillIcons/passives/minionblockchance.png"]= { ["x"]= 780, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/mana.png"]= { + ["Art/2DArt/SkillIcons/passives/miniondamage.png"]= { ["x"]= 806, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/manaregeneration.png"]= { + ["Art/2DArt/SkillIcons/passives/miniondamageBlue.png"]= { ["x"]= 832, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/manareservationreduction.png"]= { + ["Art/2DArt/SkillIcons/passives/minionlife.png"]= { ["x"]= 858, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/manastr.png"]= { + ["Art/2DArt/SkillIcons/passives/onehanddamage.png"]= { ["x"]= 884, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/masterydaggerdex.png"]= { + ["Art/2DArt/SkillIcons/passives/onehandspeed.png"]= { ["x"]= 910, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/masterysword.png"]= { + ["Art/2DArt/SkillIcons/passives/plusdexterity.png"]= { ["x"]= 936, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/masterywand.png"]= { + ["Art/2DArt/SkillIcons/passives/plusintelligence.png"]= { + ["x"]= 962, + ["y"]= 260, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/plusintelligencedexterity.png"]= { ["x"]= 0, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/meleeattackspeed.png"]= { + ["Art/2DArt/SkillIcons/passives/plusstrength.png"]= { ["x"]= 26, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/minionattackspeed.png"]= { + ["Art/2DArt/SkillIcons/passives/plusstrengthdexterity.png"]= { ["x"]= 52, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/minionblockchance.png"]= { + ["Art/2DArt/SkillIcons/passives/plusstrengthintelligence.png"]= { ["x"]= 78, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/miniondamage.png"]= { + ["Art/2DArt/SkillIcons/passives/projectilespeed.png"]= { ["x"]= 104, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/miniondamageBlue.png"]= { + ["Art/2DArt/SkillIcons/passives/shieldblock.png"]= { ["x"]= 130, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/minionlife.png"]= { + ["Art/2DArt/SkillIcons/passives/skillduration.png"]= { ["x"]= 156, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/onehanddamage.png"]= { + ["Art/2DArt/SkillIcons/passives/spellcritical.png"]= { ["x"]= 182, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/onehandspeed.png"]= { + ["Art/2DArt/SkillIcons/passives/staffaccuracy.png"]= { ["x"]= 208, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/plusdexterity.png"]= { + ["Art/2DArt/SkillIcons/passives/staffspeed.png"]= { ["x"]= 234, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/plusintelligence.png"]= { + ["Art/2DArt/SkillIcons/passives/stundex.png"]= { ["x"]= 260, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/plusintelligencedexterity.png"]= { + ["Art/2DArt/SkillIcons/passives/stunmace.png"]= { ["x"]= 286, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/plusstrength.png"]= { + ["Art/2DArt/SkillIcons/passives/stunstr.png"]= { ["x"]= 312, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/plusstrengthdexterity.png"]= { + ["Art/2DArt/SkillIcons/passives/tempdex.png"]= { ["x"]= 338, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/plusstrengthintelligence.png"]= { + ["Art/2DArt/SkillIcons/passives/tempint.png"]= { ["x"]= 364, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/projectilespeed.png"]= { + ["Art/2DArt/SkillIcons/passives/totemandbrandattackspeed.png"]= { ["x"]= 390, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/shieldblock.png"]= { + ["Art/2DArt/SkillIcons/passives/totemandbranddamage.png"]= { ["x"]= 416, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/skillduration.png"]= { + ["Art/2DArt/SkillIcons/passives/totemandbrandrange.png"]= { ["x"]= 442, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/spellcritical.png"]= { + ["Art/2DArt/SkillIcons/passives/totemattackspeed.png"]= { ["x"]= 468, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/staffaccuracy.png"]= { + ["Art/2DArt/SkillIcons/passives/totemlife.png"]= { ["x"]= 494, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/staffspeed.png"]= { + ["Art/2DArt/SkillIcons/passives/trapcriticalstrike.png"]= { ["x"]= 520, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/stundex.png"]= { + ["Art/2DArt/SkillIcons/passives/trapdamage.png"]= { ["x"]= 546, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/stunmace.png"]= { + ["Art/2DArt/SkillIcons/passives/trapsduration.png"]= { ["x"]= 572, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/stunstr.png"]= { + ["Art/2DArt/SkillIcons/passives/trapsradius.png"]= { ["x"]= 598, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/tempdex.png"]= { + ["Art/2DArt/SkillIcons/passives/trapsspeed.png"]= { ["x"]= 624, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/tempint.png"]= { + ["Art/2DArt/SkillIcons/passives/weaponelementaldamagepercentage.png"]= { ["x"]= 650, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/totemandbrandattackspeed.png"]= { + ["Art/2DArt/SkillIcons/ArohonguiTribeSkill.png"]= { ["x"]= 676, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/totemandbranddamage.png"]= { + ["Art/2DArt/SkillIcons/HinekoraTribeSkill.png"]= { ["x"]= 702, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/totemandbrandrange.png"]= { + ["Art/2DArt/SkillIcons/KitavaTribeSkill.png"]= { ["x"]= 728, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/totemattackspeed.png"]= { + ["Art/2DArt/SkillIcons/NgamahuTribeSkill.png"]= { ["x"]= 754, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/totemlife.png"]= { + ["Art/2DArt/SkillIcons/RamakoTribeSkill.png"]= { ["x"]= 780, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/trapcriticalstrike.png"]= { + ["Art/2DArt/SkillIcons/RongokuraiTribeSkill.png"]= { ["x"]= 806, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/trapdamage.png"]= { + ["Art/2DArt/SkillIcons/TasalioTribeSkill.png"]= { ["x"]= 832, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/trapsduration.png"]= { + ["Art/2DArt/SkillIcons/TawhoaTribeSkill.png"]= { ["x"]= 858, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/trapsradius.png"]= { + ["Art/2DArt/SkillIcons/TukohamaTribeSkill.png"]= { ["x"]= 884, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/trapsspeed.png"]= { + ["Art/2DArt/SkillIcons/ValakoTribeSkill.png"]= { ["x"]= 910, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/weaponelementaldamagepercentage.png"]= { + ["Art/2DArt/SkillIcons/passives/HinekoraPassiveIcon1.png"]= { ["x"]= 936, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/ArohonguiTribeSkill.png"]= { - ["x"]= 0, - ["y"]= 312, - ["w"]= 26, - ["h"]= 26 - }, - ["Art/2DArt/SkillIcons/HinekoraTribeSkill.png"]= { - ["x"]= 26, - ["y"]= 312, - ["w"]= 26, - ["h"]= 26 - }, - ["Art/2DArt/SkillIcons/KitavaTribeSkill.png"]= { - ["x"]= 52, - ["y"]= 312, - ["w"]= 26, - ["h"]= 26 - }, - ["Art/2DArt/SkillIcons/NgamahuTribeSkill.png"]= { - ["x"]= 78, - ["y"]= 312, - ["w"]= 26, - ["h"]= 26 - }, - ["Art/2DArt/SkillIcons/RamakoTribeSkill.png"]= { - ["x"]= 104, - ["y"]= 312, - ["w"]= 26, - ["h"]= 26 - }, - ["Art/2DArt/SkillIcons/RongokuraiTribeSkill.png"]= { - ["x"]= 130, - ["y"]= 312, - ["w"]= 26, - ["h"]= 26 - }, - ["Art/2DArt/SkillIcons/TasalioTribeSkill.png"]= { - ["x"]= 156, - ["y"]= 312, - ["w"]= 26, - ["h"]= 26 - }, - ["Art/2DArt/SkillIcons/TawhoaTribeSkill.png"]= { - ["x"]= 182, - ["y"]= 312, - ["w"]= 26, - ["h"]= 26 - }, - ["Art/2DArt/SkillIcons/TukohamaTribeSkill.png"]= { - ["x"]= 208, - ["y"]= 312, - ["w"]= 26, - ["h"]= 26 - }, - ["Art/2DArt/SkillIcons/ValakoTribeSkill.png"]= { - ["x"]= 234, - ["y"]= 312, - ["w"]= 26, - ["h"]= 26 - }, - ["Art/2DArt/SkillIcons/passives/HinekoraPassiveIcon1.png"]= { - ["x"]= 260, - ["y"]= 312, - ["w"]= 26, - ["h"]= 26 - }, ["Art/2DArt/SkillIcons/passives/HinekoraPassiveIcon2.png"]= { - ["x"]= 286, - ["y"]= 312, + ["x"]= 962, + ["y"]= 286, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/HinekoraPassiveIcon3.png"]= { - ["x"]= 312, + ["x"]= 0, ["y"]= 312, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/SkillscostingLifenode.png"]= { - ["x"]= 338, + ["x"]= 26, ["y"]= 312, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/accuracyint.png"]= { - ["x"]= 364, + ["x"]= 52, ["y"]= 312, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/totemandbrandlife.png"]= { - ["x"]= 390, + ["x"]= 78, ["y"]= 312, ["w"]= 26, ["h"]= 26 @@ -2813,8 +2813,8 @@ return { } }, ["notableActive"]= { - ["filename"]= "https://web.poecdn.com/image/passive-skill/skills-3.jpg?24c5e3b9", - ["w"]= 962, + ["filename"]= "https://web.poecdn.com/image/passive-skill/skills-3.jpg?b1b66a3b", + ["w"]= 999, ["h"]= 1459, ["coords"]= { ["Art/2DArt/SkillIcons/passives/2handeddamage.png"]= { @@ -2974,3871 +2974,3997 @@ return { ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/Assassin/DeadlyInfusion.png"]= { - ["x"]= 0, - ["y"]= 375, + ["x"]= 962, + ["y"]= 338, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/Assassin/Elusive.png"]= { - ["x"]= 37, + ["x"]= 0, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/Assassin/NoxiousStrike.png"]= { - ["x"]= 74, + ["x"]= 37, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/Assassin/ToxicDelivery.png"]= { - ["x"]= 111, + ["x"]= 74, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/Assassin/UnstableInfusion.png"]= { - ["x"]= 148, + ["x"]= 111, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/AssassinAnointNotable.png"]= { - ["x"]= 185, + ["x"]= 148, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/AtlasTrees/AulBloodlineNotable.png"]= { - ["x"]= 222, + ["x"]= 185, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/AtlasTrees/BestiaryNotable4.png"]= { - ["x"]= 259, + ["x"]= 222, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/AtlasTrees/BloodLineOlrothNotable.png"]= { - ["x"]= 296, + ["x"]= 259, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/AtlasTrees/BoldUndertaking.png"]= { - ["x"]= 333, + ["x"]= 296, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/AtlasTrees/BreachNotable4.png"]= { - ["x"]= 370, + ["x"]= 333, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/AtlasTrees/DeliriumNotable1.png"]= { - ["x"]= 407, + ["x"]= 370, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/AtlasTrees/FarrulNotable1.png"]= { - ["x"]= 444, + ["x"]= 407, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/AtlasTrees/HarbingerNode1.png"]= { - ["x"]= 481, + ["x"]= 444, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/AtlasTrees/LyciaNotable1.png"]= { - ["x"]= 518, + ["x"]= 481, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/AtlasTrees/MorePrimalWisps.png"]= { - ["x"]= 555, + ["x"]= 518, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/AtlasTrees/MoreVividWisps.png"]= { - ["x"]= 592, + ["x"]= 555, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/AtlasTrees/MoreWildWisps.png"]= { - ["x"]= 629, + ["x"]= 592, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/AtlasTrees/TempestNotable1.png"]= { - ["x"]= 666, + ["x"]= 629, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/AtlasTrees/UltimatumNotable3.png"]= { - ["x"]= 703, + ["x"]= 666, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/AtlasTrees/UltimatumNotable4.png"]= { - ["x"]= 740, + ["x"]= 703, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/AttackBlindNotable.png"]= { - ["x"]= 777, + ["x"]= 740, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/AttackDamangeAndEvasionNotableIcon.png"]= { - ["x"]= 814, + ["x"]= 777, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/AttackPoisonNotable.png"]= { - ["x"]= 851, + ["x"]= 814, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/AuraEffectNotable.png"]= { - ["x"]= 888, + ["x"]= 851, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/AuraReservationNotable.png"]= { - ["x"]= 925, + ["x"]= 888, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/AvataroftheHunt2.png"]= { - ["x"]= 0, - ["y"]= 412, + ["x"]= 925, + ["y"]= 375, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/AvoidInterruptionFromCastingNotable.png"]= { - ["x"]= 37, - ["y"]= 412, + ["x"]= 962, + ["y"]= 375, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/AxeNotable1.png"]= { - ["x"]= 74, + ["x"]= 0, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/AxeNotable2.png"]= { - ["x"]= 111, + ["x"]= 37, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/AxeandSwordDamage.png"]= { - ["x"]= 148, + ["x"]= 74, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/AxesandAttackSpeed.png"]= { - ["x"]= 185, + ["x"]= 111, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/BannerAreaNotable.png"]= { - ["x"]= 222, + ["x"]= 148, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/BannerDurationNotable.png"]= { - ["x"]= 259, + ["x"]= 185, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/BannerEffectNotable.png"]= { - ["x"]= 296, + ["x"]= 222, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/BannerResourceAreaNotable.png"]= { - ["x"]= 333, + ["x"]= 259, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/BannersNotable.png"]= { - ["x"]= 370, + ["x"]= 296, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/BarragingProjectilesNotable.png"]= { - ["x"]= 407, + ["x"]= 333, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/BattleRouse.png"]= { - ["x"]= 444, + ["x"]= 370, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/Berserker/AspectOfCarnage.png"]= { - ["x"]= 481, + ["x"]= 407, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/Berserker/Blitz.png"]= { - ["x"]= 518, + ["x"]= 444, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/Berserker/CloakedAgony.png"]= { - ["x"]= 555, + ["x"]= 481, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/Berserker/CombatFrenzy.png"]= { - ["x"]= 592, + ["x"]= 518, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/Berserker/DefyPain.png"]= { - ["x"]= 629, + ["x"]= 555, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/Berserker/RiteOfRuin.png"]= { - ["x"]= 666, + ["x"]= 592, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/Berserker/WarBringer.png"]= { - ["x"]= 703, + ["x"]= 629, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/BeserkerAnointNotable.png"]= { - ["x"]= 740, + ["x"]= 666, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/BladeBarrierNotable.png"]= { - ["x"]= 777, + ["x"]= 703, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/BleedPoison.png"]= { - ["x"]= 814, + ["x"]= 740, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/BleedPoisonMitigateNotable.png"]= { - ["x"]= 851, + ["x"]= 777, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/BleedingNotable1.png"]= { - ["x"]= 888, + ["x"]= 814, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/BleedingNotable2.png"]= { - ["x"]= 925, + ["x"]= 851, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/BlockAttackDmgNotable.png"]= { + ["x"]= 888, + ["y"]= 412, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/BlockSpellDmgNotable.png"]= { + ["x"]= 925, + ["y"]= 412, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Blood2.png"]= { + ["x"]= 962, + ["y"]= 412, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/BloodPact.png"]= { ["x"]= 0, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/BlockSpellDmgNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/BloodSiphon.png"]= { ["x"]= 37, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Blood2.png"]= { + ["Art/2DArt/SkillIcons/passives/BloodyBludgeon.png"]= { ["x"]= 74, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/BloodPact.png"]= { + ["Art/2DArt/SkillIcons/passives/Boomerang.png"]= { ["x"]= 111, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/BloodSiphon.png"]= { + ["Art/2DArt/SkillIcons/passives/BowDamage.png"]= { ["x"]= 148, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/BloodyBludgeon.png"]= { + ["Art/2DArt/SkillIcons/passives/Brand2.png"]= { ["x"]= 185, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Boomerang.png"]= { + ["Art/2DArt/SkillIcons/passives/Brand4.png"]= { ["x"]= 222, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/BowDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/BrandDmgNotable.png"]= { ["x"]= 259, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Brand2.png"]= { + ["Art/2DArt/SkillIcons/passives/BreathofFlames2.png"]= { ["x"]= 296, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Brand4.png"]= { + ["Art/2DArt/SkillIcons/passives/BreathofLightening2.png"]= { ["x"]= 333, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/BrandDmgNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/BreathofRime2.png"]= { ["x"]= 370, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/BreathofFlames2.png"]= { + ["Art/2DArt/SkillIcons/passives/ByTheBlade.png"]= { ["x"]= 407, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/BreathofLightening2.png"]= { + ["Art/2DArt/SkillIcons/passives/CelestialPunishment.png"]= { ["x"]= 444, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/BreathofRime2.png"]= { + ["Art/2DArt/SkillIcons/passives/ChainingProjectiles.png"]= { ["x"]= 481, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ByTheBlade.png"]= { + ["Art/2DArt/SkillIcons/passives/Champion.png"]= { ["x"]= 518, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/CelestialPunishment.png"]= { + ["Art/2DArt/SkillIcons/passives/Champion/FirstStrikeLastFall.png"]= { ["x"]= 555, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ChainingProjectiles.png"]= { + ["Art/2DArt/SkillIcons/passives/Champion/Fortitude.png"]= { ["x"]= 592, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Champion.png"]= { + ["Art/2DArt/SkillIcons/passives/Champion/ImpalePassiveNotable.png"]= { ["x"]= 629, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Champion/FirstStrikeLastFall.png"]= { + ["Art/2DArt/SkillIcons/passives/Champion/Inpirational.png"]= { ["x"]= 666, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Champion/Fortitude.png"]= { + ["Art/2DArt/SkillIcons/passives/Champion/Unstopable.png"]= { ["x"]= 703, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Champion/ImpalePassiveNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Champion/WorthyCauses.png"]= { ["x"]= 740, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Champion/Inpirational.png"]= { + ["Art/2DArt/SkillIcons/passives/Champion/WorthyFoe.png"]= { ["x"]= 777, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Champion/Unstopable.png"]= { + ["Art/2DArt/SkillIcons/passives/ChampionAnointNotable.png"]= { ["x"]= 814, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Champion/WorthyCauses.png"]= { + ["Art/2DArt/SkillIcons/passives/ChaosDamage2.png"]= { ["x"]= 851, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Champion/WorthyFoe.png"]= { + ["Art/2DArt/SkillIcons/passives/ChaosDamageOverTimeNotable.png"]= { ["x"]= 888, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ChampionAnointNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/ChaosDamageOverTimeNotable2.png"]= { ["x"]= 925, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ChaosDamage2.png"]= { + ["Art/2DArt/SkillIcons/passives/ChaosResistNotable.png"]= { + ["x"]= 962, + ["y"]= 449, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ChaoticPotential.png"]= { ["x"]= 0, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ChaosDamageOverTimeNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/CheiftainAnointNotable.png"]= { ["x"]= 37, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ChaosDamageOverTimeNotable2.png"]= { + ["Art/2DArt/SkillIcons/passives/Chieftain/ArohunguiMoonsPresenceWarcry.png"]= { ["x"]= 74, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ChaosResistNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Chieftain/HinekoraDeathsFury.png"]= { ["x"]= 111, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ChaoticPotential.png"]= { + ["Art/2DArt/SkillIcons/passives/Chieftain/NgamahuFlamesAdvance.png"]= { ["x"]= 148, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/CheiftainAnointNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Chieftain/RamakoSunsLight.png"]= { ["x"]= 185, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Chieftain/ArohunguiMoonsPresenceWarcry.png"]= { + ["Art/2DArt/SkillIcons/passives/Chieftain/TasalioCleansingWater.png"]= { ["x"]= 222, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Chieftain/HinekoraDeathsFury.png"]= { + ["Art/2DArt/SkillIcons/passives/Chieftain/TukomahaWarsHerald.png"]= { ["x"]= 259, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Chieftain/NgamahuFlamesAdvance.png"]= { + ["Art/2DArt/SkillIcons/passives/Chieftain/ValakoStormsEmbrace.png"]= { ["x"]= 296, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Chieftain/RamakoSunsLight.png"]= { + ["Art/2DArt/SkillIcons/passives/ChillThemedNotable.png"]= { ["x"]= 333, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Chieftain/TasalioCleansingWater.png"]= { + ["Art/2DArt/SkillIcons/passives/ClawNotable1.png"]= { ["x"]= 370, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Chieftain/TukomahaWarsHerald.png"]= { + ["Art/2DArt/SkillIcons/passives/ClawNotable2.png"]= { ["x"]= 407, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Chieftain/ValakoStormsEmbrace.png"]= { + ["Art/2DArt/SkillIcons/passives/ClawsOfTheMagpie.png"]= { ["x"]= 444, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ChillThemedNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/CleverThief.png"]= { ["x"]= 481, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ClawNotable1.png"]= { + ["Art/2DArt/SkillIcons/passives/ColdAndFireHybridNotable.png"]= { ["x"]= 518, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ClawNotable2.png"]= { + ["Art/2DArt/SkillIcons/passives/ColdDamageEnemyNotable.png"]= { ["x"]= 555, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ClawsOfTheMagpie.png"]= { + ["Art/2DArt/SkillIcons/passives/ColdDamageOverTimeNotable.png"]= { ["x"]= 592, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/CleverThief.png"]= { + ["Art/2DArt/SkillIcons/passives/ColdResistNotable.png"]= { ["x"]= 629, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ColdAndFireHybridNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/ColdWeaponDmg.png"]= { ["x"]= 666, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ColdDamageEnemyNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/ColdheartedCalculation2.png"]= { ["x"]= 703, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ColdDamageOverTimeNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/CombatFocusNotable.png"]= { ["x"]= 740, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ColdResistNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/CombatStamina.png"]= { ["x"]= 777, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ColdWeaponDmg.png"]= { + ["Art/2DArt/SkillIcons/passives/CommandofSteel.png"]= { ["x"]= 814, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ColdheartedCalculation2.png"]= { + ["Art/2DArt/SkillIcons/passives/Constitution.png"]= { ["x"]= 851, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/CombatFocusNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Coordination.png"]= { ["x"]= 888, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/CombatStamina.png"]= { + ["Art/2DArt/SkillIcons/passives/CorpsesNotable.png"]= { ["x"]= 925, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/CommandofSteel.png"]= { + ["Art/2DArt/SkillIcons/passives/Corruption.png"]= { + ["x"]= 962, + ["y"]= 486, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/CritStrikeBleedingNotable.png"]= { ["x"]= 0, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Constitution.png"]= { + ["Art/2DArt/SkillIcons/passives/CurseAreaOfEffectNotable.png"]= { ["x"]= 37, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Coordination.png"]= { + ["Art/2DArt/SkillIcons/passives/CurseEffectNotable.png"]= { ["x"]= 74, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/CorpsesNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/CurseNotable.png"]= { ["x"]= 111, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Corruption.png"]= { + ["Art/2DArt/SkillIcons/passives/CurseNotable2.png"]= { ["x"]= 148, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/CritStrikeBleedingNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/CursemitigationclusterNotable.png"]= { ["x"]= 185, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/CurseAreaOfEffectNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/DaggerNotable1.png"]= { ["x"]= 222, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/CurseEffectNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/DaggerandClawDamage.png"]= { ["x"]= 259, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/CurseNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/DamageOverTimeNotable.png"]= { ["x"]= 296, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/CurseNotable2.png"]= { + ["Art/2DArt/SkillIcons/passives/DamageofMinionsNotable.png"]= { ["x"]= 333, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/CursemitigationclusterNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/DarkestHour.png"]= { ["x"]= 370, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DaggerNotable1.png"]= { + ["Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeFrenzyChargeNotable.png"]= { ["x"]= 407, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DaggerandClawDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/DeadEye/FarShot.png"]= { ["x"]= 444, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DamageOverTimeNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/DeadEye/GatherWinds.png"]= { ["x"]= 481, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DamageofMinionsNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/DeadEye/Ricochet.png"]= { ["x"]= 518, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DarkestHour.png"]= { + ["Art/2DArt/SkillIcons/passives/DeadeyeAnointNotable.png"]= { ["x"]= 555, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeFrenzyChargeNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/DeepBreathsNotable.png"]= { ["x"]= 592, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DeadEye/FarShot.png"]= { + ["Art/2DArt/SkillIcons/passives/DiamondSkin2.png"]= { ["x"]= 629, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DeadEye/GatherWinds.png"]= { + ["Art/2DArt/SkillIcons/passives/DireTorment.png"]= { ["x"]= 666, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DeadEye/Ricochet.png"]= { + ["Art/2DArt/SkillIcons/passives/DivineFury.png"]= { ["x"]= 703, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DeadeyeAnointNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/DivineWrath.png"]= { ["x"]= 740, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DeepBreathsNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/DmgHeraldSkillsNotable.png"]= { ["x"]= 777, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DiamondSkin2.png"]= { + ["Art/2DArt/SkillIcons/passives/DmgWhenChannelSkillsNotable.png"]= { ["x"]= 814, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DireTorment.png"]= { + ["Art/2DArt/SkillIcons/passives/DodgeAtksNotable.png"]= { ["x"]= 851, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DivineFury.png"]= { + ["Art/2DArt/SkillIcons/passives/Dreamer.png"]= { ["x"]= 888, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DivineWrath.png"]= { + ["Art/2DArt/SkillIcons/passives/DruidicRite.png"]= { ["x"]= 925, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DmgHeraldSkillsNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/DualWieldNotable.png"]= { + ["x"]= 962, + ["y"]= 523, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/DualWieldingBlockNotable.png"]= { ["x"]= 0, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DmgWhenChannelSkillsNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/DualWieldingDamage.png"]= { ["x"]= 37, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DodgeAtksNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/DurationofMinionsNotable.png"]= { ["x"]= 74, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Dreamer.png"]= { + ["Art/2DArt/SkillIcons/passives/ElementalAilmentResistance.png"]= { ["x"]= 111, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DruidicRite.png"]= { + ["Art/2DArt/SkillIcons/passives/ElementalDamagewithAttacks2.png"]= { ["x"]= 148, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DualWieldNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/ElementalDominion2.png"]= { ["x"]= 185, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DualWieldingBlockNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/ElementalFocus.png"]= { ["x"]= 222, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DualWieldingDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/Elementalist/ChillSpecialisation.png"]= { ["x"]= 259, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DurationofMinionsNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Elementalist/ElemancerIcon.png"]= { ["x"]= 296, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ElementalAilmentResistance.png"]= { + ["Art/2DArt/SkillIcons/passives/Elementalist/IgniteSpecialisation.png"]= { ["x"]= 333, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ElementalDamagewithAttacks2.png"]= { + ["Art/2DArt/SkillIcons/passives/Elementalist/IridescentFlesh.png"]= { ["x"]= 370, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ElementalDominion2.png"]= { + ["Art/2DArt/SkillIcons/passives/Elementalist/LiegeOfThePrimordial.png"]= { ["x"]= 407, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ElementalFocus.png"]= { + ["Art/2DArt/SkillIcons/passives/Elementalist/PendulumOfDestruction.png"]= { ["x"]= 444, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Elementalist/ChillSpecialisation.png"]= { + ["Art/2DArt/SkillIcons/passives/Elementalist/PrimevalForce.png"]= { ["x"]= 481, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Elementalist/ElemancerIcon.png"]= { + ["Art/2DArt/SkillIcons/passives/Elementalist/ShockSpecialisation.png"]= { ["x"]= 518, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Elementalist/IgniteSpecialisation.png"]= { + ["Art/2DArt/SkillIcons/passives/ElementalistAnointNotable.png"]= { ["x"]= 555, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Elementalist/IridescentFlesh.png"]= { + ["Art/2DArt/SkillIcons/passives/EnduranceChargeNotable.png"]= { ["x"]= 592, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Elementalist/LiegeOfThePrimordial.png"]= { + ["Art/2DArt/SkillIcons/passives/EnergyShieldNotable.png"]= { ["x"]= 629, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Elementalist/PendulumOfDestruction.png"]= { + ["Art/2DArt/SkillIcons/passives/Entropy.png"]= { ["x"]= 666, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Elementalist/PrimevalForce.png"]= { + ["Art/2DArt/SkillIcons/passives/EscalationNotable.png"]= { ["x"]= 703, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Elementalist/ShockSpecialisation.png"]= { + ["Art/2DArt/SkillIcons/passives/EssenceSurge.png"]= { ["x"]= 740, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ElementalistAnointNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/EvasionAndBlindNotable.png"]= { ["x"]= 777, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/EnduranceChargeNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/EvasionAndPhasingNotable.png"]= { ["x"]= 814, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/EnergyShieldNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/EvasionNotable.png"]= { ["x"]= 851, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Entropy.png"]= { + ["Art/2DArt/SkillIcons/passives/ExceptionalPerformance.png"]= { ["x"]= 888, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/EscalationNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/ExplosiveRunes.png"]= { ["x"]= 925, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/EssenceSurge.png"]= { + ["Art/2DArt/SkillIcons/passives/EyesOfTheDeadly.png"]= { + ["x"]= 962, + ["y"]= 560, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/EyesOfThePowerful.png"]= { ["x"]= 0, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/EvasionAndBlindNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/EyesOfTheSavant.png"]= { ["x"]= 37, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/EvasionAndPhasingNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/FasterBleeding2.png"]= { ["x"]= 74, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/EvasionNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/FatalBlade.png"]= { ["x"]= 111, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ExceptionalPerformance.png"]= { + ["Art/2DArt/SkillIcons/passives/FireAilment.png"]= { ["x"]= 148, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ExplosiveRunes.png"]= { + ["Art/2DArt/SkillIcons/passives/FireDamageOverTimeNotable.png"]= { ["x"]= 185, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/EyesOfTheDeadly.png"]= { + ["Art/2DArt/SkillIcons/passives/FireResistNotable.png"]= { ["x"]= 222, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/EyesOfThePowerful.png"]= { + ["Art/2DArt/SkillIcons/passives/FlaskDuration.png"]= { ["x"]= 259, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/EyesOfTheSavant.png"]= { + ["Art/2DArt/SkillIcons/passives/FlaskNotableCritStrikeRecharge.png"]= { ["x"]= 296, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/FasterBleeding2.png"]= { + ["Art/2DArt/SkillIcons/passives/FlaskNotableFlasksLastLonger.png"]= { ["x"]= 333, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/FatalBlade.png"]= { + ["Art/2DArt/SkillIcons/passives/ForceOfNature.png"]= { ["x"]= 370, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/FireAilment.png"]= { + ["Art/2DArt/SkillIcons/passives/ForkingProjectilesNotable.png"]= { ["x"]= 407, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/FireDamageOverTimeNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/FortifyNotable1.png"]= { ["x"]= 444, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/FireResistNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/FortifyNotable2.png"]= { ["x"]= 481, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/FlaskDuration.png"]= { + ["Art/2DArt/SkillIcons/passives/FrenzyChargeNotable.png"]= { ["x"]= 518, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/FlaskNotableCritStrikeRecharge.png"]= { + ["Art/2DArt/SkillIcons/passives/GenericBlockNotable1.png"]= { ["x"]= 555, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/FlaskNotableFlasksLastLonger.png"]= { + ["Art/2DArt/SkillIcons/passives/GenericBlockNotable2.png"]= { ["x"]= 592, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ForceOfNature.png"]= { + ["Art/2DArt/SkillIcons/passives/GenericSpellBlockNotable.png"]= { ["x"]= 629, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ForkingProjectilesNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Gladiator/GLADBloodAndSand.png"]= { ["x"]= 666, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/FortifyNotable1.png"]= { + ["Art/2DArt/SkillIcons/passives/Gladiator/GLADBloodInEyes.png"]= { ["x"]= 703, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/FortifyNotable2.png"]= { + ["Art/2DArt/SkillIcons/passives/Gladiator/GLADPainForged.png"]= { ["x"]= 740, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/FrenzyChargeNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Gladiator/GLADVersitileCombatant.png"]= { ["x"]= 777, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/GenericBlockNotable1.png"]= { + ["Art/2DArt/SkillIcons/passives/Gladiator/GLADViolence.png"]= { ["x"]= 814, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/GenericBlockNotable2.png"]= { + ["Art/2DArt/SkillIcons/passives/Gladiator/GLADViolentRetaliation.png"]= { ["x"]= 851, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/GenericSpellBlockNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Gladiator/GladiatorDualWiledSwordAxeNotable.png"]= { ["x"]= 888, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Gladiator/GLADBloodAndSand.png"]= { + ["Art/2DArt/SkillIcons/passives/GladiatorAnointNotable.png"]= { ["x"]= 925, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Gladiator/GLADBloodInEyes.png"]= { + ["Art/2DArt/SkillIcons/passives/GolemsNotable.png"]= { + ["x"]= 962, + ["y"]= 597, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/GreenProjectileAttackNotable.png"]= { ["x"]= 0, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Gladiator/GLADPainForged.png"]= { + ["Art/2DArt/SkillIcons/passives/GrowthandDecay.png"]= { ["x"]= 37, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Gladiator/GLADVersitileCombatant.png"]= { + ["Art/2DArt/SkillIcons/passives/Guardian/GuardianHallowingFlameNotable.png"]= { ["x"]= 74, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Gladiator/GLADViolence.png"]= { + ["Art/2DArt/SkillIcons/passives/Guardian/HarmonyOfPurpose.png"]= { ["x"]= 111, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Gladiator/GLADViolentRetaliation.png"]= { + ["Art/2DArt/SkillIcons/passives/Guardian/Radient Crusade.png"]= { ["x"]= 148, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Gladiator/GladiatorDualWiledSwordAxeNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Guardian/RadientFaith.png"]= { ["x"]= 185, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/GladiatorAnointNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Guardian/ShieldMastery.png"]= { ["x"]= 222, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/GolemsNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Guardian/TimeOfNeed.png"]= { ["x"]= 259, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/GreenProjectileAttackNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Guardian/Unwavering Crusade.png"]= { ["x"]= 296, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/GrowthandDecay.png"]= { + ["Art/2DArt/SkillIcons/passives/Guardian/UnwaveringFaith.png"]= { ["x"]= 333, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Guardian/GuardianHallowingFlameNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/GuardianAnointNotable.png"]= { ["x"]= 370, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Guardian/HarmonyOfPurpose.png"]= { + ["Art/2DArt/SkillIcons/passives/Harrier.png"]= { ["x"]= 407, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Guardian/Radient Crusade.png"]= { + ["Art/2DArt/SkillIcons/passives/HeartandSoul.png"]= { ["x"]= 444, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Guardian/RadientFaith.png"]= { + ["Art/2DArt/SkillIcons/passives/HeartofChaos.png"]= { ["x"]= 481, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Guardian/ShieldMastery.png"]= { + ["Art/2DArt/SkillIcons/passives/HeartoftheOak.png"]= { ["x"]= 518, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Guardian/TimeOfNeed.png"]= { + ["Art/2DArt/SkillIcons/passives/Hearty.png"]= { ["x"]= 555, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Guardian/Unwavering Crusade.png"]= { + ["Art/2DArt/SkillIcons/passives/HeirophantAnointNotable.png"]= { ["x"]= 592, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Guardian/UnwaveringFaith.png"]= { + ["Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.png"]= { ["x"]= 629, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/GuardianAnointNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/HeraldDamageNotable.png"]= { ["x"]= 666, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Harrier.png"]= { + ["Art/2DArt/SkillIcons/passives/HeraldReservation.png"]= { ["x"]= 703, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/HeartandSoul.png"]= { + ["Art/2DArt/SkillIcons/passives/Hierophant/AncestralZeal.png"]= { ["x"]= 740, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/HeartofChaos.png"]= { + ["Art/2DArt/SkillIcons/passives/Hierophant/ArcaneSurge.png"]= { ["x"]= 777, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/HeartoftheOak.png"]= { + ["Art/2DArt/SkillIcons/passives/Hierophant/DiscipleOfRuin.png"]= { ["x"]= 814, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Hearty.png"]= { + ["Art/2DArt/SkillIcons/passives/Hierophant/ItemAugment.png"]= { ["x"]= 851, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/HeirophantAnointNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Hierophant/MindOverBeing.png"]= { ["x"]= 888, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.png"]= { + ["Art/2DArt/SkillIcons/passives/Hierophant/MindOverBody.png"]= { ["x"]= 925, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/HeraldDamageNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Hierophant/SignOfPurpose.png"]= { + ["x"]= 962, + ["y"]= 634, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Hierophant/SpiritualEmpowerment.png"]= { ["x"]= 0, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/HeraldReservation.png"]= { + ["Art/2DArt/SkillIcons/passives/HiredKiller2.png"]= { ["x"]= 37, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Hierophant/AncestralZeal.png"]= { + ["Art/2DArt/SkillIcons/passives/HoldingShieldDamage.png"]= { ["x"]= 74, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Hierophant/ArcaneSurge.png"]= { + ["Art/2DArt/SkillIcons/passives/Hunter.png"]= { ["x"]= 111, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Hierophant/DiscipleOfRuin.png"]= { + ["Art/2DArt/SkillIcons/passives/IgniteAshNotable.png"]= { ["x"]= 148, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Hierophant/ItemAugment.png"]= { + ["Art/2DArt/SkillIcons/passives/IgniteAttackNotable.png"]= { ["x"]= 185, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Hierophant/MindOverBeing.png"]= { + ["Art/2DArt/SkillIcons/passives/IgniteBleedNotable.png"]= { ["x"]= 222, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Hierophant/MindOverBody.png"]= { + ["Art/2DArt/SkillIcons/passives/IgniteStunNotable.png"]= { ["x"]= 259, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Hierophant/SignOfPurpose.png"]= { + ["Art/2DArt/SkillIcons/passives/IgnorePain.png"]= { ["x"]= 296, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Hierophant/SpiritualEmpowerment.png"]= { + ["Art/2DArt/SkillIcons/passives/Impale1HandNotable.png"]= { ["x"]= 333, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/HiredKiller2.png"]= { + ["Art/2DArt/SkillIcons/passives/ImpaleEffectNotable.png"]= { ["x"]= 370, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/HoldingShieldDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/ImpaleNotable1.png"]= { ["x"]= 407, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Hunter.png"]= { + ["Art/2DArt/SkillIcons/passives/ImpaleNotable2.png"]= { ["x"]= 444, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/IgniteAshNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreaseCritChanceNotable.png"]= { ["x"]= 481, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/IgniteAttackNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreaseMinionLifeNotable.png"]= { ["x"]= 518, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/IgniteBleedNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreasedAttackDamageNotable.png"]= { ["x"]= 555, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/IgniteStunNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreasedChaosDamage.png"]= { ["x"]= 592, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/IgnorePain.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreasedColdDamage.png"]= { ["x"]= 629, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Impale1HandNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreasedElementalDamage.png"]= { ["x"]= 666, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ImpaleEffectNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreasedFireDamage.png"]= { ["x"]= 703, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ImpaleNotable1.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreasedLightningDamage.png"]= { ["x"]= 740, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ImpaleNotable2.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreasedManaCostNotable.png"]= { ["x"]= 777, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/IncreaseCritChanceNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreasedMaximumLifeNotable.png"]= { ["x"]= 814, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/IncreaseMinionLifeNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreasedMinionDamageNotable.png"]= { ["x"]= 851, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/IncreasedAttackDamageNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreasedNonDamageAilmentNotable.png"]= { ["x"]= 888, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/IncreasedChaosDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.png"]= { ["x"]= 925, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/IncreasedColdDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreasedSpellDamageNode.png"]= { + ["x"]= 962, + ["y"]= 671, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/IncreasedSpellDamageNotable.png"]= { ["x"]= 0, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/IncreasedElementalDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreasedWarcryNotable.png"]= { ["x"]= 37, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/IncreasedFireDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/InfusedFlesh.png"]= { ["x"]= 74, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/IncreasedLightningDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/InquisitorAnointNotable.png"]= { ["x"]= 111, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/IncreasedManaCostNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Inquistitor/ElementalDomination.png"]= { ["x"]= 148, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/IncreasedMaximumLifeNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Inquistitor/ElementalForce.png"]= { ["x"]= 185, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/IncreasedMinionDamageNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Inquistitor/ElementalMastery.png"]= { ["x"]= 222, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/IncreasedNonDamageAilmentNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Inquistitor/GloryOfTheSavant.png"]= { ["x"]= 259, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/Inquistitor/InstrumentsOfVirtue.png"]= { ["x"]= 296, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/IncreasedSpellDamageNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Inquistitor/InstrumentsofZeal.png"]= { ["x"]= 333, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/IncreasedSpellDamageNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Inquistitor/Sanctify.png"]= { ["x"]= 370, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/IncreasedWarcryNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Inspiration.png"]= { ["x"]= 407, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/InfusedFlesh.png"]= { + ["Art/2DArt/SkillIcons/passives/IntensifyNotable.png"]= { ["x"]= 444, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/InquisitorAnointNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Juggernaut/JuggernautArmourNotable.png"]= { ["x"]= 481, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Inquistitor/ElementalDomination.png"]= { + ["Art/2DArt/SkillIcons/passives/Juggernaut/Unbreakable.png"]= { ["x"]= 518, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Inquistitor/ElementalForce.png"]= { + ["Art/2DArt/SkillIcons/passives/Juggernaut/Undeniable.png"]= { ["x"]= 555, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Inquistitor/ElementalMastery.png"]= { + ["Art/2DArt/SkillIcons/passives/Juggernaut/Unflinching.png"]= { ["x"]= 592, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Inquistitor/GloryOfTheSavant.png"]= { + ["Art/2DArt/SkillIcons/passives/Juggernaut/Unrelenting.png"]= { ["x"]= 629, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Inquistitor/InstrumentsOfVirtue.png"]= { + ["Art/2DArt/SkillIcons/passives/Juggernaut/Unstoppable.png"]= { ["x"]= 666, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Inquistitor/InstrumentsofZeal.png"]= { + ["Art/2DArt/SkillIcons/passives/Juggernaut/Unyielding.png"]= { ["x"]= 703, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Inquistitor/Sanctify.png"]= { + ["Art/2DArt/SkillIcons/passives/JuggernautAnointNotable.png"]= { ["x"]= 740, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Inspiration.png"]= { + ["Art/2DArt/SkillIcons/passives/KeystoneArmourMaster.png"]= { ["x"]= 777, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/IntensifyNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/KeystoneWhispersOfDoom.png"]= { ["x"]= 814, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Juggernaut/JuggernautArmourNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/LifeArmourAndEvasion.png"]= { ["x"]= 851, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Juggernaut/Unbreakable.png"]= { + ["Art/2DArt/SkillIcons/passives/LifeFlasks.png"]= { ["x"]= 888, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Juggernaut/Undeniable.png"]= { + ["Art/2DArt/SkillIcons/passives/LifeGainOnHitNotable.png"]= { ["x"]= 925, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Juggernaut/Unflinching.png"]= { + ["Art/2DArt/SkillIcons/passives/LifeManaFlasksrecovery.png"]= { + ["x"]= 962, + ["y"]= 708, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/LifeRecoupNotable.png"]= { ["x"]= 0, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Juggernaut/Unrelenting.png"]= { + ["Art/2DArt/SkillIcons/passives/LifeRegenerationGainRegenNotable.png"]= { ["x"]= 37, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Juggernaut/Unstoppable.png"]= { + ["Art/2DArt/SkillIcons/passives/LifeRegenerationLowlifeBonusNotable.png"]= { ["x"]= 74, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Juggernaut/Unyielding.png"]= { + ["Art/2DArt/SkillIcons/passives/LifeandCursesN.png"]= { ["x"]= 111, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/JuggernautAnointNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/LifeandManaFlasks.png"]= { ["x"]= 148, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/KeystoneWhispersOfDoom.png"]= { + ["Art/2DArt/SkillIcons/passives/LifeandResistancesofMinions.png"]= { ["x"]= 185, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/LifeArmourAndEvasion.png"]= { + ["Art/2DArt/SkillIcons/passives/LightOfDivinity.png"]= { ["x"]= 222, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/LifeFlasks.png"]= { + ["Art/2DArt/SkillIcons/passives/LightningResistNotable.png"]= { ["x"]= 259, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/LifeGainOnHitNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/LinkNotable3.png"]= { ["x"]= 296, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/LifeManaFlasksrecovery.png"]= { + ["Art/2DArt/SkillIcons/passives/LinkNotable4.png"]= { ["x"]= 333, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/LifeRecoupNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/LustforCarnage.png"]= { ["x"]= 370, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/LifeRegenerationGainRegenNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/MaceNotable1.png"]= { ["x"]= 407, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/LifeRegenerationLowlifeBonusNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/MaceNotable2.png"]= { ["x"]= 444, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/LifeandCursesN.png"]= { + ["Art/2DArt/SkillIcons/passives/MaceandStaffDamage.png"]= { ["x"]= 481, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/LifeandManaFlasks.png"]= { + ["Art/2DArt/SkillIcons/passives/ManaDamageKeystone.png"]= { ["x"]= 518, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/LifeandResistancesofMinions.png"]= { + ["Art/2DArt/SkillIcons/passives/ManaFlasksOften.png"]= { ["x"]= 555, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/LightOfDivinity.png"]= { + ["Art/2DArt/SkillIcons/passives/ManaGuardNotable.png"]= { ["x"]= 592, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/LightningResistNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/ManaNotable.png"]= { ["x"]= 629, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/LinkNotable3.png"]= { + ["Art/2DArt/SkillIcons/passives/ManaandArcaneSurge.png"]= { ["x"]= 666, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/LinkNotable4.png"]= { + ["Art/2DArt/SkillIcons/passives/ManaandSpellBlock.png"]= { ["x"]= 703, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/LustforCarnage.png"]= { + ["Art/2DArt/SkillIcons/passives/ManaandSpellDamage.png"]= { ["x"]= 740, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MaceNotable1.png"]= { + ["Art/2DArt/SkillIcons/passives/Mark.png"]= { ["x"]= 777, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MaceNotable2.png"]= { + ["Art/2DArt/SkillIcons/passives/MarkNotable1.png"]= { ["x"]= 814, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MaceandStaffDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/MarkNotable2.png"]= { ["x"]= 851, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ManaDamageKeystone.png"]= { + ["Art/2DArt/SkillIcons/passives/MarkNotableIncreasedEffect.png"]= { ["x"]= 888, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ManaFlasksOften.png"]= { + ["Art/2DArt/SkillIcons/passives/MarkNotableMarkSpellRecently.png"]= { ["x"]= 925, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ManaGuardNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/MartialExperience.png"]= { + ["x"]= 962, + ["y"]= 745, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/MasterofForce.png"]= { ["x"]= 0, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ManaNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/MaxElementalResistNotable.png"]= { ["x"]= 37, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ManaandArcaneSurge.png"]= { + ["Art/2DArt/SkillIcons/passives/MaxManaNotable.png"]= { ["x"]= 74, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ManaandSpellBlock.png"]= { + ["Art/2DArt/SkillIcons/passives/MaximumElementalResistances2.png"]= { ["x"]= 111, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ManaandSpellDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/MeasuredFuryNotable.png"]= { ["x"]= 148, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Mark.png"]= { + ["Art/2DArt/SkillIcons/passives/MeleeAoENode.png"]= { ["x"]= 185, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MarkNotable1.png"]= { + ["Art/2DArt/SkillIcons/passives/MeleeAoENotable.png"]= { ["x"]= 222, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MarkNotable2.png"]= { + ["Art/2DArt/SkillIcons/passives/MeleeCriticalStrikesNotable.png"]= { ["x"]= 259, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MarkNotableIncreasedEffect.png"]= { + ["Art/2DArt/SkillIcons/passives/MeleeFireNotable.png"]= { ["x"]= 296, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MarkNotableMarkSpellRecently.png"]= { + ["Art/2DArt/SkillIcons/passives/MeleeRange2.png"]= { ["x"]= 333, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MartialExperience.png"]= { + ["Art/2DArt/SkillIcons/passives/MeleeUtility.png"]= { ["x"]= 370, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MasterofForce.png"]= { + ["Art/2DArt/SkillIcons/passives/Meleerange.png"]= { ["x"]= 407, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MaxElementalResistNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/MentalRapidity.png"]= { ["x"]= 444, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MaxManaNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/MindPact.png"]= { ["x"]= 481, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MaximumElementalResistances2.png"]= { + ["Art/2DArt/SkillIcons/passives/MineAreaOfEffectNotable.png"]= { ["x"]= 518, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MeasuredFuryNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/MineCriticalStrikesNotable.png"]= { ["x"]= 555, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MeleeAoENode.png"]= { + ["Art/2DArt/SkillIcons/passives/MineManaReservationNotable.png"]= { ["x"]= 592, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MeleeAoENotable.png"]= { + ["Art/2DArt/SkillIcons/passives/MineTrap.png"]= { ["x"]= 629, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MeleeCriticalStrikesNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/MinionDmgHeraldSkillsNotable.png"]= { ["x"]= 666, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MeleeFireNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Mirage.png"]= { ["x"]= 703, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MeleeRange2.png"]= { + ["Art/2DArt/SkillIcons/passives/NaturalAuthorityNotable.png"]= { ["x"]= 740, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MeleeUtility.png"]= { + ["Art/2DArt/SkillIcons/passives/Necromancer/CommandingTheDarkness.png"]= { ["x"]= 777, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Meleerange.png"]= { + ["Art/2DArt/SkillIcons/passives/Necromancer/CorpseConsumptionNotable2.png"]= { ["x"]= 814, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MentalRapidity.png"]= { + ["Art/2DArt/SkillIcons/passives/Necromancer/DefensiveMinionNotable.png"]= { ["x"]= 851, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MindPact.png"]= { + ["Art/2DArt/SkillIcons/passives/Necromancer/EssenceGlutton.png"]= { ["x"]= 888, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MineAreaOfEffectNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Necromancer/GenericMinionNotable.png"]= { ["x"]= 925, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MineCriticalStrikesNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Necromancer/GiftsOfTheDamned.png"]= { + ["x"]= 962, + ["y"]= 782, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Necromancer/OffensiveMinionNotable.png"]= { ["x"]= 0, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MineManaReservationNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Necromancer/PlagueBringer.png"]= { ["x"]= 37, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MineTrap.png"]= { + ["Art/2DArt/SkillIcons/passives/NecromancerAnointNotable.png"]= { ["x"]= 74, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MinionDmgHeraldSkillsNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Occultist/FatefulEchoes.png"]= { ["x"]= 111, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Mirage.png"]= { + ["Art/2DArt/SkillIcons/passives/Occultist/FrigidWake.png"]= { ["x"]= 148, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/NaturalAuthorityNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Occultist/LotusExtract.png"]= { ["x"]= 185, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Necromancer/CommandingTheDarkness.png"]= { + ["Art/2DArt/SkillIcons/passives/Occultist/SoulCatalyst.png"]= { ["x"]= 222, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Necromancer/CorpseConsumptionNotable2.png"]= { + ["Art/2DArt/SkillIcons/passives/Occultist/VoidBeacon.png"]= { ["x"]= 259, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Necromancer/DefensiveMinionNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Occultist/VowOfDamnation.png"]= { ["x"]= 296, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Necromancer/EssenceGlutton.png"]= { + ["Art/2DArt/SkillIcons/passives/Occultist/WitheringPresence.png"]= { ["x"]= 333, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Necromancer/GenericMinionNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/OccultistAnointNotable.png"]= { ["x"]= 370, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Necromancer/GiftsOfTheDamned.png"]= { + ["Art/2DArt/SkillIcons/passives/OneHandedPhysicalAndLeechNotable.png"]= { ["x"]= 407, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Necromancer/OffensiveMinionNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/PathFinder/AlchemistGift.png"]= { ["x"]= 444, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Necromancer/PlagueBringer.png"]= { + ["Art/2DArt/SkillIcons/passives/PathFinder/MasterAlchemist.png"]= { ["x"]= 481, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/NecromancerAnointNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/PathFinder/MasterHerbalist.png"]= { ["x"]= 518, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Occultist/FatefulEchoes.png"]= { + ["Art/2DArt/SkillIcons/passives/PathFinder/MasterSurgeon.png"]= { ["x"]= 555, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Occultist/FrigidWake.png"]= { + ["Art/2DArt/SkillIcons/passives/PathFinder/Master Toxicist.png"]= { ["x"]= 592, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Occultist/LotusExtract.png"]= { + ["Art/2DArt/SkillIcons/passives/PathFinder/NaturesAdrenaline.png"]= { ["x"]= 629, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Occultist/SoulCatalyst.png"]= { + ["Art/2DArt/SkillIcons/passives/PathFinder/VeteranBowyer.png"]= { ["x"]= 666, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Occultist/VoidBeacon.png"]= { + ["Art/2DArt/SkillIcons/passives/PathfinderAnointNotable.png"]= { ["x"]= 703, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Occultist/VowOfDamnation.png"]= { + ["Art/2DArt/SkillIcons/passives/PhysicalDamageNotable.png"]= { ["x"]= 740, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Occultist/WitheringPresence.png"]= { + ["Art/2DArt/SkillIcons/passives/PhysicalDamageNotableGreen.png"]= { ["x"]= 777, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/OccultistAnointNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeHybrid.png"]= { ["x"]= 814, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/OneHandedPhysicalAndLeechNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNotable.png"]= { ["x"]= 851, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/PathFinder/AlchemistGift.png"]= { + ["Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimenotable1.png"]= { ["x"]= 888, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/PathFinder/MasterAlchemist.png"]= { + ["Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimenotable2.png"]= { ["x"]= 925, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/PathFinder/MasterHerbalist.png"]= { + ["Art/2DArt/SkillIcons/passives/Poison.png"]= { + ["x"]= 962, + ["y"]= 819, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/PoisonSpellsNotable.png"]= { ["x"]= 0, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/PathFinder/MasterSurgeon.png"]= { + ["Art/2DArt/SkillIcons/passives/PowerChargeNotable.png"]= { ["x"]= 37, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/PathFinder/Master Toxicist.png"]= { + ["Art/2DArt/SkillIcons/passives/Primalist/PrimalistCorpseLoot.png"]= { ["x"]= 74, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/PathFinder/NaturesAdrenaline.png"]= { + ["Art/2DArt/SkillIcons/passives/Primalist/PrimalistInventoryExpansion.png"]= { ["x"]= 111, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/PathFinder/VeteranBowyer.png"]= { + ["Art/2DArt/SkillIcons/passives/ProfaneChemistry.png"]= { ["x"]= 148, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/PathfinderAnointNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/ProjectileDmgNotable.png"]= { ["x"]= 185, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/PhysicalDamageNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/ProjectilesNotable.png"]= { ["x"]= 222, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/PhysicalDamageNotableGreen.png"]= { + ["Art/2DArt/SkillIcons/passives/ProtectiveWinds.png"]= { ["x"]= 259, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeHybrid.png"]= { + ["Art/2DArt/SkillIcons/passives/QuickRecovery.png"]= { ["x"]= 296, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/RageNotable.png"]= { ["x"]= 333, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimenotable1.png"]= { + ["Art/2DArt/SkillIcons/passives/RageNotable1.png"]= { ["x"]= 370, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimenotable2.png"]= { + ["Art/2DArt/SkillIcons/passives/RageNotable2.png"]= { ["x"]= 407, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Poison.png"]= { + ["Art/2DArt/SkillIcons/passives/RageNotable3.png"]= { ["x"]= 444, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/PoisonSpellsNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/RangedTotemCriticalStrikes.png"]= { ["x"]= 481, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/PowerChargeNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/RangedTotemOffensive.png"]= { ["x"]= 518, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Primalist/PrimalistCorpseLoot.png"]= { + ["Art/2DArt/SkillIcons/passives/RedHolyAttackNotable.png"]= { ["x"]= 555, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Primalist/PrimalistInventoryExpansion.png"]= { + ["Art/2DArt/SkillIcons/passives/Redemption.png"]= { ["x"]= 592, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ProfaneChemistry.png"]= { + ["Art/2DArt/SkillIcons/passives/ReducedManaNotable.png"]= { ["x"]= 629, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ProjectileDmgNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/ReducedProjectileSpeedNotable.png"]= { ["x"]= 666, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ProjectilesNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNotable.png"]= { ["x"]= 703, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ProtectiveWinds.png"]= { + ["Art/2DArt/SkillIcons/passives/Resourcefulness.png"]= { ["x"]= 740, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/QuickRecovery.png"]= { + ["Art/2DArt/SkillIcons/passives/Retaliation.png"]= { ["x"]= 777, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/RageNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/RetaliationAoE.png"]= { ["x"]= 814, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/RageNotable1.png"]= { + ["Art/2DArt/SkillIcons/passives/RetaliationAttackBlock.png"]= { ["x"]= 851, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/RageNotable2.png"]= { + ["Art/2DArt/SkillIcons/passives/RetaliationDurationCooldown.png"]= { ["x"]= 888, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/RageNotable3.png"]= { + ["Art/2DArt/SkillIcons/passives/RetaliationSkillDamage.png"]= { ["x"]= 925, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/RangedTotemCriticalStrikes.png"]= { + ["Art/2DArt/SkillIcons/passives/RetaliationSpellBlock.png"]= { + ["x"]= 962, + ["y"]= 856, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/RetaliationStun.png"]= { ["x"]= 0, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/RangedTotemOffensive.png"]= { + ["Art/2DArt/SkillIcons/passives/Retribution.png"]= { ["x"]= 37, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/RedHolyAttackNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Revelry.png"]= { ["x"]= 74, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Redemption.png"]= { + ["Art/2DArt/SkillIcons/passives/RighteousArmy.png"]= { ["x"]= 111, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ReducedManaNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Righteous Decree.png"]= { ["x"]= 148, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ReducedProjectileSpeedNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/RitualBloodLineNotable.png"]= { ["x"]= 185, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Robust.png"]= { ["x"]= 222, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Resourcefulness.png"]= { + ["Art/2DArt/SkillIcons/passives/Saboteur/BlindedAssult.png"]= { ["x"]= 259, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Retaliation.png"]= { + ["Art/2DArt/SkillIcons/passives/Saboteur/BombSpecialist.png"]= { ["x"]= 296, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/RetaliationAoE.png"]= { + ["Art/2DArt/SkillIcons/passives/Saboteur/ChainReaction.png"]= { ["x"]= 333, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/RetaliationAttackBlock.png"]= { + ["Art/2DArt/SkillIcons/passives/Saboteur/DemolitionSpecialist.png"]= { ["x"]= 370, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/RetaliationDurationCooldown.png"]= { + ["Art/2DArt/SkillIcons/passives/Saboteur/ExplosivesExpert.png"]= { ["x"]= 407, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/RetaliationSkillDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/Saboteur/LikeClockworkNotable.png"]= { ["x"]= 444, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/RetaliationSpellBlock.png"]= { + ["Art/2DArt/SkillIcons/passives/Saboteur/PerfectCrime.png"]= { ["x"]= 481, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/RetaliationStun.png"]= { + ["Art/2DArt/SkillIcons/passives/Saboteur/ShadowsDarknessBlind.png"]= { ["x"]= 518, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Retribution.png"]= { + ["Art/2DArt/SkillIcons/passives/Saboteur/ShrapnelSpecialist.png"]= { ["x"]= 555, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Revelry.png"]= { + ["Art/2DArt/SkillIcons/passives/SaboteurAnointNotable.png"]= { ["x"]= 592, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/RighteousArmy.png"]= { + ["Art/2DArt/SkillIcons/passives/Sanctuary.png"]= { ["x"]= 629, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Righteous Decree.png"]= { + ["Art/2DArt/SkillIcons/passives/SareshBloodlineNotable1.png"]= { ["x"]= 666, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/RitualBloodLineNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/SareshBloodlineNotable3.png"]= { ["x"]= 703, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Robust.png"]= { + ["Art/2DArt/SkillIcons/passives/SareshBloodlineNoteble2.png"]= { ["x"]= 740, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Saboteur/BlindedAssult.png"]= { + ["Art/2DArt/SkillIcons/passives/SavantPath.png"]= { ["x"]= 777, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Saboteur/BombSpecialist.png"]= { + ["Art/2DArt/SkillIcons/passives/SearingHeat.png"]= { ["x"]= 814, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Saboteur/ChainReaction.png"]= { + ["Art/2DArt/SkillIcons/passives/Sentinel.png"]= { ["x"]= 851, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Saboteur/DemolitionSpecialist.png"]= { + ["Art/2DArt/SkillIcons/passives/Shaper.png"]= { ["x"]= 888, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Saboteur/ExplosivesExpert.png"]= { + ["Art/2DArt/SkillIcons/passives/ShieldAttackDamage.png"]= { ["x"]= 925, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Saboteur/LikeClockworkNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/ShieldNotable.png"]= { + ["x"]= 962, + ["y"]= 893, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ShrugOff.png"]= { ["x"]= 0, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Saboteur/PerfectCrime.png"]= { + ["Art/2DArt/SkillIcons/passives/SkitteringRunes.png"]= { ["x"]= 37, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Saboteur/ShadowsDarknessBlind.png"]= { + ["Art/2DArt/SkillIcons/passives/Slayer/BaneOfLegends.png"]= { ["x"]= 74, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Saboteur/ShrapnelSpecialist.png"]= { + ["Art/2DArt/SkillIcons/passives/Slayer/BrutalFervor.png"]= { ["x"]= 111, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/SaboteurAnointNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Slayer/Charges.png"]= { ["x"]= 148, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Sanctuary.png"]= { + ["Art/2DArt/SkillIcons/passives/Slayer/CriticalAttacks.png"]= { ["x"]= 185, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/SareshBloodlineNotable1.png"]= { + ["Art/2DArt/SkillIcons/passives/Slayer/EndlessHunger.png"]= { ["x"]= 222, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/SareshBloodlineNotable3.png"]= { + ["Art/2DArt/SkillIcons/passives/Slayer/Headman.png"]= { ["x"]= 259, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/SareshBloodlineNoteble2.png"]= { + ["Art/2DArt/SkillIcons/passives/Slayer/Impact.png"]= { ["x"]= 296, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/SavantPath.png"]= { + ["Art/2DArt/SkillIcons/passives/SlayerAnointNotable.png"]= { ["x"]= 333, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/SearingHeat.png"]= { + ["Art/2DArt/SkillIcons/passives/SoulPact.png"]= { ["x"]= 370, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Sentinel.png"]= { + ["Art/2DArt/SkillIcons/passives/SoulSiphoning.png"]= { ["x"]= 407, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Shaper.png"]= { + ["Art/2DArt/SkillIcons/passives/SpellSuppressionLifeFlasksN.png"]= { ["x"]= 444, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ShieldAttackDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/SpellSupressionAndEnergyShieldNotable.png"]= { ["x"]= 481, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ShieldNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/SpellSupressionNotable1.png"]= { ["x"]= 518, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ShrugOff.png"]= { + ["Art/2DArt/SkillIcons/passives/SpellSupressionNotable2.png"]= { ["x"]= 555, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/SkitteringRunes.png"]= { + ["Art/2DArt/SkillIcons/passives/SpikedBulwark.png"]= { ["x"]= 592, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Slayer/BaneOfLegends.png"]= { + ["Art/2DArt/SkillIcons/passives/SpiritualAid.png"]= { ["x"]= 629, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Slayer/BrutalFervor.png"]= { + ["Art/2DArt/SkillIcons/passives/SpiritualCommand.png"]= { ["x"]= 666, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Slayer/Charges.png"]= { + ["Art/2DArt/SkillIcons/passives/StaffCrit.png"]= { ["x"]= 703, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Slayer/CriticalAttacks.png"]= { + ["Art/2DArt/SkillIcons/passives/StaffNotable.png"]= { ["x"]= 740, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Slayer/EndlessHunger.png"]= { + ["Art/2DArt/SkillIcons/passives/StaffNotable2.png"]= { ["x"]= 777, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Slayer/Headman.png"]= { + ["Art/2DArt/SkillIcons/passives/StaffNotable3.png"]= { ["x"]= 814, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Slayer/Impact.png"]= { + ["Art/2DArt/SkillIcons/passives/StanceNotableReservation.png"]= { ["x"]= 851, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/SlayerAnointNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/StanceNotableSwitching.png"]= { ["x"]= 888, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/SoulPact.png"]= { + ["Art/2DArt/SkillIcons/passives/Storm Weaver.png"]= { ["x"]= 925, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/SoulSiphoning.png"]= { + ["Art/2DArt/SkillIcons/passives/StrengthOfBlood.png"]= { + ["x"]= 962, + ["y"]= 930, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/StrikeSkillsNotable.png"]= { ["x"]= 0, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/SpellSuppressionLifeFlasksN.png"]= { + ["Art/2DArt/SkillIcons/passives/StunAvoidNotable.png"]= { ["x"]= 37, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/SpellSupressionAndEnergyShieldNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/StunMastery.png"]= { ["x"]= 74, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/SpellSupressionNotable1.png"]= { + ["Art/2DArt/SkillIcons/passives/SupremeProdigy.png"]= { ["x"]= 111, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/SpellSupressionNotable2.png"]= { + ["Art/2DArt/SkillIcons/passives/Survivalist.png"]= { ["x"]= 148, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/SpikedBulwark.png"]= { + ["Art/2DArt/SkillIcons/passives/SwordNotable1.png"]= { ["x"]= 185, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/SpiritualAid.png"]= { + ["Art/2DArt/SkillIcons/passives/TasteforBlood.png"]= { ["x"]= 222, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/SpiritualCommand.png"]= { + ["Art/2DArt/SkillIcons/passives/TempestBlast.png"]= { ["x"]= 259, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/StaffCrit.png"]= { + ["Art/2DArt/SkillIcons/passives/ThrillKiller.png"]= { ["x"]= 296, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/StaffNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/TinctureFlaskNotable1.png"]= { ["x"]= 333, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/StaffNotable2.png"]= { + ["Art/2DArt/SkillIcons/passives/TinctureManaNotable1.png"]= { ["x"]= 370, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/StaffNotable3.png"]= { + ["Art/2DArt/SkillIcons/passives/TinctureNotable1.png"]= { ["x"]= 407, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/StanceNotableReservation.png"]= { + ["Art/2DArt/SkillIcons/passives/TinctureNotable2.png"]= { ["x"]= 444, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/StanceNotableSwitching.png"]= { + ["Art/2DArt/SkillIcons/passives/TinctureNotable3.png"]= { ["x"]= 481, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Storm Weaver.png"]= { + ["Art/2DArt/SkillIcons/passives/TotemDmgNotable.png"]= { ["x"]= 518, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/StrengthOfBlood.png"]= { + ["Art/2DArt/SkillIcons/passives/Trap.png"]= { ["x"]= 555, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/StrikeSkillsNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Trap2.png"]= { ["x"]= 592, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/StunAvoidNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/TrapAndMineDmgNotable.png"]= { ["x"]= 629, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/StunMastery.png"]= { + ["Art/2DArt/SkillIcons/passives/Trickster/DamageOverTime.png"]= { ["x"]= 666, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/SupremeProdigy.png"]= { + ["Art/2DArt/SkillIcons/passives/Trickster/HeedfulRecovery.png"]= { ["x"]= 703, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Survivalist.png"]= { + ["Art/2DArt/SkillIcons/passives/Trickster/ImmuneToDoT.png"]= { ["x"]= 740, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/SwordNotable1.png"]= { + ["Art/2DArt/SkillIcons/passives/Trickster/OneStepAheadTrickster.png"]= { ["x"]= 777, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/TasteforBlood.png"]= { + ["Art/2DArt/SkillIcons/passives/Trickster/PolymathTrickster.png"]= { ["x"]= 814, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/TempestBlast.png"]= { + ["Art/2DArt/SkillIcons/passives/Trickster/SoulThiefTrickster.png"]= { ["x"]= 851, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ThrillKiller.png"]= { + ["Art/2DArt/SkillIcons/passives/Trickster/SupressionEnergyShieldTrickster.png"]= { ["x"]= 888, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/TinctureFlaskNotable1.png"]= { + ["Art/2DArt/SkillIcons/passives/Trickster/UncontrolledVigour.png"]= { ["x"]= 925, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/TinctureManaNotable1.png"]= { + ["Art/2DArt/SkillIcons/passives/TricksterAnointNotable.png"]= { + ["x"]= 962, + ["y"]= 967, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/TrueStriker.png"]= { ["x"]= 0, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/TinctureNotable1.png"]= { + ["Art/2DArt/SkillIcons/passives/TwoHandedMeleeDamage.png"]= { ["x"]= 37, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/TinctureNotable2.png"]= { + ["Art/2DArt/SkillIcons/passives/TwoHandedweaponImpalesNotable.png"]= { ["x"]= 74, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/TinctureNotable3.png"]= { + ["Art/2DArt/SkillIcons/passives/Unfaltering.png"]= { ["x"]= 111, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/TotemDmgNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Unrelenting.png"]= { ["x"]= 148, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Trap.png"]= { + ["Art/2DArt/SkillIcons/passives/Unwavering.png"]= { ["x"]= 185, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Trap2.png"]= { + ["Art/2DArt/SkillIcons/passives/UpwardsFiringProjectilesNotable.png"]= { ["x"]= 222, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/TrapAndMineDmgNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Vampirism.png"]= { ["x"]= 259, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Trickster/DamageOverTime.png"]= { + ["Art/2DArt/SkillIcons/passives/VoidBarrier.png"]= { ["x"]= 296, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Trickster/HeedfulRecovery.png"]= { + ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanBloodMagic1.png"]= { ["x"]= 333, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Trickster/ImmuneToDoT.png"]= { + ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanBloodMagic2.png"]= { ["x"]= 370, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Trickster/OneStepAheadTrickster.png"]= { + ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanBloodMagic3.png"]= { ["x"]= 407, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Trickster/PolymathTrickster.png"]= { + ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanCorpses.png"]= { ["x"]= 444, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Trickster/SoulThiefTrickster.png"]= { + ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanCurses2.png"]= { ["x"]= 481, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Trickster/SupressionEnergyShieldTrickster.png"]= { + ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanCursesChoice.png"]= { ["x"]= 518, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Trickster/UncontrolledVigour.png"]= { + ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanVoodooDoll.png"]= { ["x"]= 555, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/TricksterAnointNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/WandDamage.png"]= { ["x"]= 592, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/TrueStriker.png"]= { + ["Art/2DArt/SkillIcons/passives/WarcryBuffEffectNotable.png"]= { ["x"]= 629, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/TwoHandedMeleeDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/WarcryGainDamageNotable.png"]= { ["x"]= 666, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/TwoHandedweaponImpalesNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Warden/TinctureRangedNotable.png"]= { ["x"]= 703, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Unfaltering.png"]= { + ["Art/2DArt/SkillIcons/passives/Warden/WardenAllAilments.png"]= { ["x"]= 740, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Unrelenting.png"]= { + ["Art/2DArt/SkillIcons/passives/Warden/WardenBarkskin1.png"]= { ["x"]= 777, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Unwavering.png"]= { + ["Art/2DArt/SkillIcons/passives/Warden/WardenBarkskin2.png"]= { ["x"]= 814, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/UpwardsFiringProjectilesNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Warden/WardenColdAilments.png"]= { ["x"]= 851, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Vampirism.png"]= { + ["Art/2DArt/SkillIcons/passives/Warden/WardenFireAilments.png"]= { ["x"]= 888, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/VoidBarrier.png"]= { + ["Art/2DArt/SkillIcons/passives/Warden/WardenLightningAilments.png"]= { ["x"]= 925, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanBloodMagic1.png"]= { + ["Art/2DArt/SkillIcons/passives/Warden/WardenPrimitivism.png"]= { + ["x"]= 962, + ["y"]= 1004, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Warden/WardenSaps1.png"]= { ["x"]= 0, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanBloodMagic2.png"]= { + ["Art/2DArt/SkillIcons/passives/Warden/WardenSaps2.png"]= { ["x"]= 37, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanBloodMagic3.png"]= { + ["Art/2DArt/SkillIcons/passives/Warden/WardenSaps3.png"]= { ["x"]= 74, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanCorpses.png"]= { + ["Art/2DArt/SkillIcons/passives/Warden/WardenTracking.png"]= { ["x"]= 111, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanCurses2.png"]= { + ["Art/2DArt/SkillIcons/passives/WardenAnointNotable.png"]= { ["x"]= 148, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanCursesChoice.png"]= { + ["Art/2DArt/SkillIcons/passives/Warrior.png"]= { ["x"]= 185, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanVoodooDoll.png"]= { + ["Art/2DArt/SkillIcons/passives/WeaponElementalNotable.png"]= { ["x"]= 222, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/WandDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/WritteninBlood.png"]= { ["x"]= 259, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/WarcryBuffEffectNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/accuracydex.png"]= { ["x"]= 296, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/WarcryGainDamageNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/adderstouch.png"]= { ["x"]= 333, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Warden/TinctureRangedNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/ambidexterity.png"]= { ["x"]= 370, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Warden/WardenAllAilments.png"]= { + ["Art/2DArt/SkillIcons/passives/amplify.png"]= { ["x"]= 407, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Warden/WardenBarkskin1.png"]= { + ["Art/2DArt/SkillIcons/passives/animalspirit.png"]= { ["x"]= 444, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Warden/WardenBarkskin2.png"]= { + ["Art/2DArt/SkillIcons/passives/arcaneefficiency.png"]= { ["x"]= 481, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Warden/WardenColdAilments.png"]= { + ["Art/2DArt/SkillIcons/passives/arcane focus.png"]= { ["x"]= 518, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Warden/WardenFireAilments.png"]= { + ["Art/2DArt/SkillIcons/passives/arcanepotency.png"]= { ["x"]= 555, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Warden/WardenLightningAilments.png"]= { + ["Art/2DArt/SkillIcons/passives/arcaneradience.png"]= { ["x"]= 592, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Warden/WardenPrimitivism.png"]= { + ["Art/2DArt/SkillIcons/passives/armourmastery.png"]= { ["x"]= 629, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Warden/WardenSaps1.png"]= { + ["Art/2DArt/SkillIcons/passives/arsonist.png"]= { ["x"]= 666, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Warden/WardenSaps2.png"]= { + ["Art/2DArt/SkillIcons/passives/ashfrostandstorm.png"]= { ["x"]= 703, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Warden/WardenSaps3.png"]= { + ["Art/2DArt/SkillIcons/passives/attackspeedbow.png"]= { ["x"]= 740, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Warden/WardenTracking.png"]= { + ["Art/2DArt/SkillIcons/passives/authority.png"]= { ["x"]= 777, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/WardenAnointNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/barricade.png"]= { ["x"]= 814, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Warrior.png"]= { + ["Art/2DArt/SkillIcons/passives/berserking.png"]= { ["x"]= 851, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/WeaponElementalNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/bladebarrier.png"]= { ["x"]= 888, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/WritteninBlood.png"]= { + ["Art/2DArt/SkillIcons/passives/blademaster.png"]= { ["x"]= 925, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/accuracydex.png"]= { + ["Art/2DArt/SkillIcons/passives/blademistress.png"]= { + ["x"]= 962, + ["y"]= 1041, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/blastradius.png"]= { ["x"]= 0, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/adderstouch.png"]= { + ["Art/2DArt/SkillIcons/passives/bodysoul.png"]= { ["x"]= 37, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ambidexterity.png"]= { + ["Art/2DArt/SkillIcons/passives/borntofight.png"]= { ["x"]= 74, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/amplify.png"]= { + ["Art/2DArt/SkillIcons/passives/breathofrime.png"]= { ["x"]= 111, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/animalspirit.png"]= { + ["Art/2DArt/SkillIcons/passives/butchery.png"]= { ["x"]= 148, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/arcaneefficiency.png"]= { + ["Art/2DArt/SkillIcons/passives/castavoidinterruption.png"]= { ["x"]= 185, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/arcane focus.png"]= { + ["Art/2DArt/SkillIcons/passives/catalyse.png"]= { ["x"]= 222, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/arcanepotency.png"]= { + ["Art/2DArt/SkillIcons/passives/chargedex.png"]= { ["x"]= 259, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/arcaneradience.png"]= { + ["Art/2DArt/SkillIcons/passives/chargeint.png"]= { ["x"]= 296, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/armourmastery.png"]= { + ["Art/2DArt/SkillIcons/passives/chargestr.png"]= { ["x"]= 333, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/arsonist.png"]= { + ["Art/2DArt/SkillIcons/passives/cleverconstruction.png"]= { ["x"]= 370, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ashfrostandstorm.png"]= { + ["Art/2DArt/SkillIcons/passives/clustersLink2.png"]= { ["x"]= 407, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/attackspeedbow.png"]= { + ["Art/2DArt/SkillIcons/passives/clustersLink3.png"]= { ["x"]= 444, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/authority.png"]= { + ["Art/2DArt/SkillIcons/passives/criticalstrikemultiplier2.png"]= { ["x"]= 481, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/barricade.png"]= { + ["Art/2DArt/SkillIcons/passives/cruelblade.png"]= { ["x"]= 518, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/berserking.png"]= { + ["Art/2DArt/SkillIcons/passives/daggerpenetration.png"]= { ["x"]= 555, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/bladebarrier.png"]= { + ["Art/2DArt/SkillIcons/passives/deadlydraw.png"]= { ["x"]= 592, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/blademaster.png"]= { + ["Art/2DArt/SkillIcons/passives/deadlyprecision.png"]= { ["x"]= 629, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/blademistress.png"]= { + ["Art/2DArt/SkillIcons/passives/deathattunement.png"]= { ["x"]= 666, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/blastradius.png"]= { + ["Art/2DArt/SkillIcons/passives/deepthoughts.png"]= { ["x"]= 703, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/bodysoul.png"]= { + ["Art/2DArt/SkillIcons/passives/deepwisdom.png"]= { ["x"]= 740, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/borntofight.png"]= { + ["Art/2DArt/SkillIcons/passives/diamondskin.png"]= { ["x"]= 777, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/breathofrime.png"]= { + ["Art/2DArt/SkillIcons/passives/doomcast.png"]= { ["x"]= 814, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/butchery.png"]= { + ["Art/2DArt/SkillIcons/passives/eagleeye.png"]= { ["x"]= 851, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/castavoidinterruption.png"]= { + ["Art/2DArt/SkillIcons/passives/eagletalons.png"]= { ["x"]= 888, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/catalyse.png"]= { + ["Art/2DArt/SkillIcons/passives/elderpower.png"]= { ["x"]= 925, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/chargedex.png"]= { + ["Art/2DArt/SkillIcons/passives/elementalist.png"]= { + ["x"]= 962, + ["y"]= 1078, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/evasion.png"]= { ["x"]= 0, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/chargeint.png"]= { + ["Art/2DArt/SkillIcons/passives/executioner.png"]= { ["x"]= 37, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/chargestr.png"]= { + ["Art/2DArt/SkillIcons/passives/expeditiousmunitions.png"]= { ["x"]= 74, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/cleverconstruction.png"]= { + ["Art/2DArt/SkillIcons/passives/fellingtheweak.png"]= { ["x"]= 111, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/clustersLink2.png"]= { + ["Art/2DArt/SkillIcons/passives/fending.png"]= { ["x"]= 148, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/clustersLink3.png"]= { + ["Art/2DArt/SkillIcons/passives/finesse.png"]= { ["x"]= 185, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/criticalstrikemultiplier2.png"]= { + ["Art/2DArt/SkillIcons/passives/firedamage.png"]= { ["x"]= 222, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/cruelblade.png"]= { + ["Art/2DArt/SkillIcons/passives/flameborn.png"]= { ["x"]= 259, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/daggerpenetration.png"]= { + ["Art/2DArt/SkillIcons/passives/flaying.png"]= { ["x"]= 296, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/deadlydraw.png"]= { + ["Art/2DArt/SkillIcons/passives/foresight.png"]= { ["x"]= 333, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/deadlyprecision.png"]= { + ["Art/2DArt/SkillIcons/passives/frostborn.png"]= { ["x"]= 370, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/deathattunement.png"]= { + ["Art/2DArt/SkillIcons/passives/furybolts.png"]= { ["x"]= 407, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/deepthoughts.png"]= { + ["Art/2DArt/SkillIcons/passives/fussilade.png"]= { ["x"]= 444, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/deepwisdom.png"]= { + ["Art/2DArt/SkillIcons/passives/galvanichammer.png"]= { ["x"]= 481, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/diamondskin.png"]= { + ["Art/2DArt/SkillIcons/passives/golemsblood.png"]= { ["x"]= 518, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/doomcast.png"]= { + ["Art/2DArt/SkillIcons/passives/grace.png"]= { ["x"]= 555, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/eagleeye.png"]= { + ["Art/2DArt/SkillIcons/passives/graveexpectations.png"]= { ["x"]= 592, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/eagletalons.png"]= { + ["Art/2DArt/SkillIcons/passives/graveintentions.png"]= { ["x"]= 629, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/elderpower.png"]= { + ["Art/2DArt/SkillIcons/passives/gravepact.png"]= { ["x"]= 666, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/elementalist.png"]= { + ["Art/2DArt/SkillIcons/passives/hammerblows.png"]= { ["x"]= 703, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/evasion.png"]= { + ["Art/2DArt/SkillIcons/passives/hatchetmaster.png"]= { ["x"]= 740, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/executioner.png"]= { + ["Art/2DArt/SkillIcons/passives/heartofthegladiator.png"]= { ["x"]= 777, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/expeditiousmunitions.png"]= { + ["Art/2DArt/SkillIcons/passives/heartpierce.png"]= { ["x"]= 814, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/fellingtheweak.png"]= { + ["Art/2DArt/SkillIcons/passives/heartseeker.png"]= { ["x"]= 851, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/fending.png"]= { + ["Art/2DArt/SkillIcons/passives/heavydraw.png"]= { ["x"]= 888, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/finesse.png"]= { + ["Art/2DArt/SkillIcons/passives/hellfire.png"]= { ["x"]= 925, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/firedamage.png"]= { + ["Art/2DArt/SkillIcons/passives/highexplosives.png"]= { + ["x"]= 962, + ["y"]= 1115, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/icebite.png"]= { ["x"]= 0, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/flameborn.png"]= { + ["Art/2DArt/SkillIcons/passives/iceheart.png"]= { ["x"]= 37, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/flaying.png"]= { + ["Art/2DArt/SkillIcons/passives/increased armor.png"]= { ["x"]= 74, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/foresight.png"]= { + ["Art/2DArt/SkillIcons/passives/influence.png"]= { ["x"]= 111, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/frostborn.png"]= { + ["Art/2DArt/SkillIcons/passives/innerforce.png"]= { ["x"]= 148, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/furybolts.png"]= { + ["Art/2DArt/SkillIcons/passives/ironwoodtotem.png"]= { ["x"]= 185, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/fussilade.png"]= { + ["Art/2DArt/SkillIcons/passives/kingofthehill.png"]= { ["x"]= 222, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/galvanichammer.png"]= { + ["Art/2DArt/SkillIcons/passives/lavalash.png"]= { ["x"]= 259, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/golemsblood.png"]= { + ["Art/2DArt/SkillIcons/passives/leadership.png"]= { ["x"]= 296, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/grace.png"]= { + ["Art/2DArt/SkillIcons/passives/legendaryswordsman.png"]= { ["x"]= 333, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/graveexpectations.png"]= { + ["Art/2DArt/SkillIcons/passives/life1.png"]= { ["x"]= 370, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/graveintentions.png"]= { + ["Art/2DArt/SkillIcons/passives/lifeleech.png"]= { ["x"]= 407, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/gravepact.png"]= { + ["Art/2DArt/SkillIcons/passives/lifeleechimmunity.png"]= { ["x"]= 444, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/hammerblows.png"]= { + ["Art/2DArt/SkillIcons/passives/lightningint.png"]= { ["x"]= 481, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/hatchetmaster.png"]= { + ["Art/2DArt/SkillIcons/passives/lordofthedead.png"]= { ["x"]= 518, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/heartofthegladiator.png"]= { + ["Art/2DArt/SkillIcons/passives/macedmg.png"]= { ["x"]= 555, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/heartpierce.png"]= { + ["Art/2DArt/SkillIcons/passives/manaconduit.png"]= { ["x"]= 592, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/heartseeker.png"]= { + ["Art/2DArt/SkillIcons/passives/masterfletcher.png"]= { ["x"]= 629, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/heavydraw.png"]= { + ["Art/2DArt/SkillIcons/passives/mastersapper.png"]= { ["x"]= 666, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/hellfire.png"]= { + ["Art/2DArt/SkillIcons/passives/masterywand.png"]= { ["x"]= 703, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/highexplosives.png"]= { + ["Art/2DArt/SkillIcons/passives/melding.png"]= { ["x"]= 740, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/icebite.png"]= { + ["Art/2DArt/SkillIcons/passives/mentalacuity.png"]= { ["x"]= 777, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/iceheart.png"]= { + ["Art/2DArt/SkillIcons/passives/minddrinker.png"]= { ["x"]= 814, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/increased armor.png"]= { + ["Art/2DArt/SkillIcons/passives/minionblockchance.png"]= { ["x"]= 851, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/influence.png"]= { + ["Art/2DArt/SkillIcons/passives/newcolddamage.png"]= { ["x"]= 888, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/innerforce.png"]= { + ["Art/2DArt/SkillIcons/passives/newenergyshield.png"]= { ["x"]= 925, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ironwoodtotem.png"]= { + ["Art/2DArt/SkillIcons/passives/newevadepercentage.png"]= { + ["x"]= 962, + ["y"]= 1152, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/newincreasedcritical.png"]= { ["x"]= 0, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/kingofthehill.png"]= { + ["Art/2DArt/SkillIcons/passives/newnewattackspeed.png"]= { ["x"]= 37, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/lavalash.png"]= { + ["Art/2DArt/SkillIcons/passives/newtitanicmight.png"]= { ["x"]= 74, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/leadership.png"]= { + ["Art/2DArt/SkillIcons/passives/nightstalker.png"]= { ["x"]= 111, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/legendaryswordsman.png"]= { + ["Art/2DArt/SkillIcons/passives/nimbleness.png"]= { ["x"]= 148, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/life1.png"]= { + ["Art/2DArt/SkillIcons/passives/oxblood.png"]= { ["x"]= 185, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/lifeleech.png"]= { + ["Art/2DArt/SkillIcons/passives/perfectaim.png"]= { ["x"]= 222, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/lifeleechimmunity.png"]= { + ["Art/2DArt/SkillIcons/passives/plusdexterity.png"]= { ["x"]= 259, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/lightningint.png"]= { + ["Art/2DArt/SkillIcons/passives/plusintelligence.png"]= { ["x"]= 296, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/lordofthedead.png"]= { + ["Art/2DArt/SkillIcons/passives/plusstrength.png"]= { ["x"]= 333, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/macedmg.png"]= { + ["Art/2DArt/SkillIcons/passives/potencyofwill.png"]= { ["x"]= 370, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/manaconduit.png"]= { + ["Art/2DArt/SkillIcons/passives/precision.png"]= { ["x"]= 407, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/masterfletcher.png"]= { + ["Art/2DArt/SkillIcons/passives/pyromaniac.png"]= { ["x"]= 444, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/mastersapper.png"]= { + ["Art/2DArt/SkillIcons/passives/quickstep.png"]= { ["x"]= 481, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/masterywand.png"]= { + ["Art/2DArt/SkillIcons/passives/razorsedge.png"]= { ["x"]= 518, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/melding.png"]= { + ["Art/2DArt/SkillIcons/passives/reaver.png"]= { ["x"]= 555, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/mentalacuity.png"]= { + ["Art/2DArt/SkillIcons/passives/revengeofthehunted.png"]= { ["x"]= 592, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/minddrinker.png"]= { + ["Art/2DArt/SkillIcons/passives/saboteur.png"]= { ["x"]= 629, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/minionblockchance.png"]= { + ["Art/2DArt/SkillIcons/passives/savant.png"]= { ["x"]= 666, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/newcolddamage.png"]= { + ["Art/2DArt/SkillIcons/passives/scissorblades.png"]= { ["x"]= 703, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/newenergyshield.png"]= { + ["Art/2DArt/SkillIcons/passives/serpentstance.png"]= { ["x"]= 740, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/newevadepercentage.png"]= { + ["Art/2DArt/SkillIcons/passives/shamsnisticfury.png"]= { ["x"]= 777, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/newincreasedcritical.png"]= { + ["Art/2DArt/SkillIcons/passives/shieldwall.png"]= { ["x"]= 814, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/newnewattackspeed.png"]= { + ["Art/2DArt/SkillIcons/passives/skullcracking.png"]= { ["x"]= 851, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/newtitanicmight.png"]= { + ["Art/2DArt/SkillIcons/passives/soulsyphon.png"]= { ["x"]= 888, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/nightstalker.png"]= { + ["Art/2DArt/SkillIcons/passives/sovereignty.png"]= { ["x"]= 925, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/nimbleness.png"]= { + ["Art/2DArt/SkillIcons/passives/sparkingattacks.png"]= { + ["x"]= 962, + ["y"]= 1189, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/stabbingcomeback.png"]= { ["x"]= 0, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/oxblood.png"]= { + ["Art/2DArt/SkillIcons/passives/staticshield.png"]= { ["x"]= 37, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/perfectaim.png"]= { + ["Art/2DArt/SkillIcons/passives/stormborn.png"]= { ["x"]= 74, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/plusdexterity.png"]= { + ["Art/2DArt/SkillIcons/passives/strongarm.png"]= { ["x"]= 111, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/plusintelligence.png"]= { + ["Art/2DArt/SkillIcons/passives/stunmace.png"]= { ["x"]= 148, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/plusstrength.png"]= { + ["Art/2DArt/SkillIcons/passives/stunstaff.png"]= { ["x"]= 185, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/potencyofwill.png"]= { + ["Art/2DArt/SkillIcons/passives/swagger.png"]= { ["x"]= 222, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/precision.png"]= { + ["Art/2DArt/SkillIcons/passives/swashbuckler.png"]= { ["x"]= 259, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/pyromaniac.png"]= { + ["Art/2DArt/SkillIcons/passives/talonsofmurder.png"]= { ["x"]= 296, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/quickstep.png"]= { + ["Art/2DArt/SkillIcons/passives/thickskin.png"]= { ["x"]= 333, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/razorsedge.png"]= { + ["Art/2DArt/SkillIcons/passives/throatseeker.png"]= { ["x"]= 370, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/reaver.png"]= { + ["Art/2DArt/SkillIcons/passives/titanicmight.png"]= { ["x"]= 407, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/revengeofthehunted.png"]= { + ["Art/2DArt/SkillIcons/passives/totemandbrandrange.png"]= { ["x"]= 444, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/saboteur.png"]= { + ["Art/2DArt/SkillIcons/passives/totemicmastery.png"]= { ["x"]= 481, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/savant.png"]= { + ["Art/2DArt/SkillIcons/passives/totemiczeal.png"]= { ["x"]= 518, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/scissorblades.png"]= { + ["Art/2DArt/SkillIcons/passives/trapsradius.png"]= { ["x"]= 555, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/serpentstance.png"]= { + ["Art/2DArt/SkillIcons/passives/trollblood.png"]= { ["x"]= 592, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/shamsnisticfury.png"]= { + ["Art/2DArt/SkillIcons/passives/volitilemines.png"]= { ["x"]= 629, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/shieldwall.png"]= { + ["Art/2DArt/SkillIcons/passives/wandslingersprowess.png"]= { ["x"]= 666, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/skullcracking.png"]= { + ["Art/2DArt/SkillIcons/passives/whirlingstaff.png"]= { ["x"]= 703, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/soulsyphon.png"]= { + ["Art/2DArt/SkillIcons/passives/wreckingball.png"]= { ["x"]= 740, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/sovereignty.png"]= { + ["Art/2DArt/SkillIcons/passives/Ascendants/Assassin.png"]= { ["x"]= 777, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/sparkingattacks.png"]= { + ["Art/2DArt/SkillIcons/passives/Ascendants/Berserker.png"]= { ["x"]= 814, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/stabbingcomeback.png"]= { + ["Art/2DArt/SkillIcons/passives/Ascendants/Champion.png"]= { ["x"]= 851, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/staticshield.png"]= { + ["Art/2DArt/SkillIcons/passives/Ascendants/Chieftain.png"]= { ["x"]= 888, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/stormborn.png"]= { + ["Art/2DArt/SkillIcons/passives/Ascendants/Deadeye.png"]= { ["x"]= 925, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/strongarm.png"]= { + ["Art/2DArt/SkillIcons/passives/Ascendants/Elementalist.png"]= { + ["x"]= 962, + ["y"]= 1226, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/Gladiator.png"]= { ["x"]= 0, ["y"]= 1263, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/stunmace.png"]= { + ["Art/2DArt/SkillIcons/passives/Ascendants/Guardian.png"]= { ["x"]= 37, ["y"]= 1263, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/stunstaff.png"]= { + ["Art/2DArt/SkillIcons/passives/Ascendants/Hierophant.png"]= { ["x"]= 74, ["y"]= 1263, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/swagger.png"]= { + ["Art/2DArt/SkillIcons/passives/Ascendants/Inquisitor.png"]= { ["x"]= 111, ["y"]= 1263, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/swashbuckler.png"]= { + ["Art/2DArt/SkillIcons/passives/Ascendants/Juggernaut.png"]= { ["x"]= 148, ["y"]= 1263, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/talonsofmurder.png"]= { + ["Art/2DArt/SkillIcons/passives/Ascendants/Necromancer.png"]= { ["x"]= 185, ["y"]= 1263, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/thickskin.png"]= { + ["Art/2DArt/SkillIcons/passives/Ascendants/Occultist.png"]= { ["x"]= 222, ["y"]= 1263, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/throatseeker.png"]= { + ["Art/2DArt/SkillIcons/passives/Ascendants/Pathfinder.png"]= { ["x"]= 259, ["y"]= 1263, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/titanicmight.png"]= { + ["Art/2DArt/SkillIcons/passives/Ascendants/Raider.png"]= { ["x"]= 296, ["y"]= 1263, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/totemandbrandrange.png"]= { + ["Art/2DArt/SkillIcons/passives/Ascendants/Saboteur.png"]= { ["x"]= 333, ["y"]= 1263, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/totemicmastery.png"]= { + ["Art/2DArt/SkillIcons/passives/Ascendants/Slayer.png"]= { ["x"]= 370, ["y"]= 1263, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/totemiczeal.png"]= { + ["Art/2DArt/SkillIcons/passives/Ascendants/Trickster.png"]= { ["x"]= 407, ["y"]= 1263, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/trapsradius.png"]= { + ["Art/2DArt/SkillIcons/passives/Assassin/Ambush.png"]= { ["x"]= 444, ["y"]= 1263, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/trollblood.png"]= { + ["Art/2DArt/SkillIcons/passives/Chieftain/TawhoaForestsStrength.png"]= { ["x"]= 481, ["y"]= 1263, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/volitilemines.png"]= { - ["x"]= 518, - ["y"]= 1263, - ["w"]= 37, - ["h"]= 37 - }, - ["Art/2DArt/SkillIcons/passives/wandslingersprowess.png"]= { - ["x"]= 555, - ["y"]= 1263, - ["w"]= 37, - ["h"]= 37 - }, - ["Art/2DArt/SkillIcons/passives/whirlingstaff.png"]= { - ["x"]= 592, - ["y"]= 1263, - ["w"]= 37, - ["h"]= 37 - }, - ["Art/2DArt/SkillIcons/passives/wreckingball.png"]= { - ["x"]= 629, - ["y"]= 1263, - ["w"]= 37, - ["h"]= 37 - }, ["Art/2DArt/SkillIcons/passives/HinekoraPassiveIcon1.png"]= { - ["x"]= 666, + ["x"]= 518, ["y"]= 1263, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/HinekoraPassiveIcon2.png"]= { - ["x"]= 703, + ["x"]= 555, ["y"]= 1263, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/HinekoraPassiveIcon3.png"]= { - ["x"]= 740, + ["x"]= 592, ["y"]= 1263, ["w"]= 37, ["h"]= 37 @@ -6846,8 +6972,8 @@ return { } }, ["keystoneActive"]= { - ["filename"]= "https://web.poecdn.com/image/passive-skill/skills-3.jpg?24c5e3b9", - ["w"]= 962, + ["filename"]= "https://web.poecdn.com/image/passive-skill/skills-3.jpg?b1b66a3b", + ["w"]= 999, ["h"]= 1459, ["coords"]= { ["Art/2DArt/SkillIcons/passives/AnointOnlyKeystone.png"]= { @@ -6959,217 +7085,217 @@ return { ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/KeystoneEldritchBattery.png"]= { - ["x"]= 0, - ["y"]= 1353, + ["x"]= 936, + ["y"]= 1300, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/KeystoneElementalEquilibrium.png"]= { - ["x"]= 52, + ["x"]= 0, ["y"]= 1353, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/KeystoneElementalOverload.png"]= { - ["x"]= 104, + ["x"]= 52, ["y"]= 1353, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/KeystoneHexMaster.png"]= { - ["x"]= 156, + ["x"]= 104, ["y"]= 1353, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/KeystoneIronGrip.png"]= { - ["x"]= 208, + ["x"]= 156, ["y"]= 1353, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/KeystoneIronReflexes.png"]= { - ["x"]= 260, + ["x"]= 208, ["y"]= 1353, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/KeystoneIronWill.png"]= { - ["x"]= 312, + ["x"]= 260, ["y"]= 1353, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/KeystoneMinionInstability.png"]= { - ["x"]= 364, + ["x"]= 312, ["y"]= 1353, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/KeystoneNecromanticAegis.png"]= { - ["x"]= 416, + ["x"]= 364, ["y"]= 1353, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/KeystonePainAttunement.png"]= { - ["x"]= 468, + ["x"]= 416, ["y"]= 1353, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/KeystonePointBlankArcher.png"]= { - ["x"]= 520, + ["x"]= 468, ["y"]= 1353, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/KeystoneResoluteTechnique.png"]= { - ["x"]= 572, + ["x"]= 520, ["y"]= 1353, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/KeystoneUnwaveringStance.png"]= { - ["x"]= 624, + ["x"]= 572, ["y"]= 1353, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/Kineticism.png"]= { - ["x"]= 676, + ["x"]= 624, ["y"]= 1353, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/LoneMessenger.png"]= { - ["x"]= 728, + ["x"]= 676, ["y"]= 1353, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/MiracleMaker.png"]= { - ["x"]= 780, + ["x"]= 728, ["y"]= 1353, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/MomentofRespite.png"]= { - ["x"]= 832, + ["x"]= 780, ["y"]= 1353, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/NaturesPatience.png"]= { - ["x"]= 884, + ["x"]= 832, ["y"]= 1353, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/Occultist/EldrichBarrier.png"]= { - ["x"]= 0, - ["y"]= 1406, + ["x"]= 884, + ["y"]= 1353, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/Pitfighter.png"]= { - ["x"]= 52, - ["y"]= 1406, + ["x"]= 936, + ["y"]= 1353, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/PreciseTechnique.png"]= { - ["x"]= 104, + ["x"]= 0, ["y"]= 1406, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/Resilience.png"]= { - ["x"]= 156, + ["x"]= 52, ["y"]= 1406, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/RetaliationKeystone.png"]= { - ["x"]= 208, + ["x"]= 104, ["y"]= 1406, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/SacredBastionKeystone.png"]= { - ["x"]= 260, + ["x"]= 156, ["y"]= 1406, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/SecretOfAgony.png"]= { - ["x"]= 312, + ["x"]= 208, ["y"]= 1406, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/SupremeEgo.png"]= { - ["x"]= 364, + ["x"]= 260, ["y"]= 1406, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/TinctureKeystone1.png"]= { - ["x"]= 416, + ["x"]= 312, ["y"]= 1406, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/Trickster/AcrobaticWillpower.png"]= { - ["x"]= 468, + ["x"]= 364, ["y"]= 1406, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/VersatileCombatant.png"]= { - ["x"]= 520, + ["x"]= 416, ["y"]= 1406, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/VeteransAwareness.png"]= { - ["x"]= 572, + ["x"]= 468, ["y"]= 1406, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/WindDancer.png"]= { - ["x"]= 624, + ["x"]= 520, ["y"]= 1406, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/ghostreaver.png"]= { - ["x"]= 676, + ["x"]= 572, ["y"]= 1406, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/heroicspirit.png"]= { - ["x"]= 728, + ["x"]= 624, ["y"]= 1406, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/liferegentoenergyshield.png"]= { - ["x"]= 780, + ["x"]= 676, ["y"]= 1406, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/totemmax.png"]= { - ["x"]= 832, + ["x"]= 728, ["y"]= 1406, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/vaalpact.png"]= { - ["x"]= 884, + ["x"]= 780, ["y"]= 1406, ["w"]= 52, ["h"]= 53 @@ -7177,8 +7303,8 @@ return { } }, ["normalInactive"]= { - ["filename"]= "https://web.poecdn.com/image/passive-skill/skills-disabled-3.jpg?ac7492dd", - ["w"]= 962, + ["filename"]= "https://web.poecdn.com/image/passive-skill/skills-disabled-3.jpg?94caf4e2", + ["w"]= 999, ["h"]= 1459, ["coords"]= { ["Art/2DArt/SkillIcons/passives/2handeddamage.png"]= { @@ -7404,2539 +7530,2539 @@ return { ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/AtlasTrees/BestiaryNode1.png"]= { - ["x"]= 0, - ["y"]= 26, + ["x"]= 962, + ["y"]= 0, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/AtlasTrees/BestiaryNotable4.png"]= { - ["x"]= 26, + ["x"]= 0, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/AtlasTrees/BestiaryNotable5.png"]= { - ["x"]= 52, + ["x"]= 26, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/AtlasTrees/BestiaryNotable6.png"]= { - ["x"]= 78, + ["x"]= 52, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/AtlasTrees/BloodLineOlrothRune1.png"]= { - ["x"]= 104, + ["x"]= 78, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/AtlasTrees/BloodLineOlrothRune2.png"]= { - ["x"]= 130, + ["x"]= 104, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/AtlasTrees/BloodLineOlrothRune3.png"]= { - ["x"]= 156, + ["x"]= 130, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/AtlasTrees/BoldUndertaking.png"]= { - ["x"]= 182, + ["x"]= 156, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/AtlasTrees/BreachBossClaspedHands.png"]= { - ["x"]= 208, + ["x"]= 182, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/AtlasTrees/DeliriumNode1.png"]= { - ["x"]= 234, + ["x"]= 208, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/AtlasTrees/ExpeditionNode1.png"]= { - ["x"]= 260, + ["x"]= 234, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/AtlasTrees/HarbingerNotable3.png"]= { - ["x"]= 286, + ["x"]= 260, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/AtlasTrees/LichNode1.png"]= { - ["x"]= 312, + ["x"]= 286, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/AtlasTrees/LyciaNode1.png"]= { - ["x"]= 338, + ["x"]= 312, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/AtlasTrees/MorePrimalWispsSmall.png"]= { - ["x"]= 364, + ["x"]= 338, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/AtlasTrees/MoreVividWispsSmall.png"]= { - ["x"]= 390, + ["x"]= 364, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/AtlasTrees/MoreWildWispsSmall.png"]= { - ["x"]= 416, + ["x"]= 390, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/AtlasTrees/PerandusNotable2.png"]= { - ["x"]= 442, + ["x"]= 416, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/AtlasTrees/RitualBloodlineNode.png"]= { - ["x"]= 468, + ["x"]= 442, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/AtlasTrees/UltimatumNode1.png"]= { - ["x"]= 494, + ["x"]= 468, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/AtlasTrees/UltimatumNotable6.png"]= { - ["x"]= 520, + ["x"]= 494, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/AtlasTrees/UltimatumNotableMonsters1.png"]= { - ["x"]= 546, + ["x"]= 520, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/AtlasTrees/UltimatumNotableMonsters2.png"]= { - ["x"]= 572, + ["x"]= 546, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/AtlasTrees/UltimatumNotableStoneCircle.png"]= { - ["x"]= 598, + ["x"]= 572, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/AttackBlindNode.png"]= { - ["x"]= 624, + ["x"]= 598, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/AttackDamangeAndEvasionNotableNode.png"]= { - ["x"]= 650, + ["x"]= 624, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/AttackPoisonNode.png"]= { - ["x"]= 676, + ["x"]= 650, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/AuraEffectNode.png"]= { - ["x"]= 702, + ["x"]= 676, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/BannerAreaNode.png"]= { - ["x"]= 728, + ["x"]= 702, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/BannerDurationNode.png"]= { - ["x"]= 754, + ["x"]= 728, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/BannerEffectNode.png"]= { - ["x"]= 780, + ["x"]= 754, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/BannerResourceAreaNode.png"]= { - ["x"]= 806, + ["x"]= 780, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/BeltimberBladeNode.png"]= { - ["x"]= 832, + ["x"]= 806, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/Berserker/DmgAttackSpeed.png"]= { - ["x"]= 858, + ["x"]= 832, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/Berserker/DmgCrit.png"]= { - ["x"]= 884, + ["x"]= 858, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/Berserker/DmgLeech.png"]= { - ["x"]= 910, + ["x"]= 884, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/Berserker/DmgWarcry.png"]= { - ["x"]= 936, + ["x"]= 910, ["y"]= 26, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/BleedAndPoisonMitigateNode.png"]= { - ["x"]= 0, - ["y"]= 52, + ["x"]= 936, + ["y"]= 26, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/BlockAttackDmgNode.png"]= { - ["x"]= 26, - ["y"]= 52, + ["x"]= 962, + ["y"]= 26, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/BlockSpellDmgNode.png"]= { - ["x"]= 52, + ["x"]= 0, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/Blood2.png"]= { - ["x"]= 78, + ["x"]= 26, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/BluntInstrument.png"]= { - ["x"]= 104, + ["x"]= 52, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/BowDamage.png"]= { - ["x"]= 130, + ["x"]= 78, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/Brand1.png"]= { - ["x"]= 156, + ["x"]= 104, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/Brand2.png"]= { - ["x"]= 182, + ["x"]= 130, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/BrandDmgNode.png"]= { - ["x"]= 208, + ["x"]= 156, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/BrassDomeNode.png"]= { - ["x"]= 234, + ["x"]= 182, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/Champion/AnEAttDamage.png"]= { - ["x"]= 260, + ["x"]= 208, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/Champion/AnEAura.png"]= { - ["x"]= 286, + ["x"]= 234, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/Champion/AnEFortify.png"]= { - ["x"]= 312, + ["x"]= 260, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/Champion/AnETaunt.png"]= { - ["x"]= 338, + ["x"]= 286, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/Champion/ImpalePassive.png"]= { - ["x"]= 364, + ["x"]= 312, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/ChaosDamage.png"]= { - ["x"]= 390, + ["x"]= 338, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/ChaosDamageOverTimeNode.png"]= { - ["x"]= 416, + ["x"]= 364, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/ChaosDamagenode.png"]= { - ["x"]= 442, + ["x"]= 390, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/ChaosResistNode.png"]= { - ["x"]= 468, + ["x"]= 416, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/ChaosResistNotable.png"]= { - ["x"]= 494, + ["x"]= 442, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/Chieftain/LifeRegenFireDamage.png"]= { - ["x"]= 520, + ["x"]= 468, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/Chieftain/LifeRegenStrength.png"]= { - ["x"]= 546, + ["x"]= 494, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/Chieftain/LifeRegenTotemPlacementSpeed.png"]= { - ["x"]= 572, + ["x"]= 520, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/ClawCritStrikeChanceNode.png"]= { - ["x"]= 598, + ["x"]= 546, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/ColdAndFireHybridNode.png"]= { - ["x"]= 624, + ["x"]= 572, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/ColdDamageOverTimeNode.png"]= { - ["x"]= 650, + ["x"]= 598, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/ColdDamagenode.png"]= { - ["x"]= 676, + ["x"]= 624, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/ColdResistNode.png"]= { - ["x"]= 702, + ["x"]= 650, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/CooldownWarcryNode1.png"]= { - ["x"]= 728, + ["x"]= 676, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/CorpseDamage.png"]= { - ["x"]= 754, + ["x"]= 702, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/CorpseLife.png"]= { - ["x"]= 780, + ["x"]= 728, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/CurseAreaofEffect.png"]= { - ["x"]= 806, + ["x"]= 754, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/CurseCastSpeed.png"]= { - ["x"]= 832, + ["x"]= 780, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/CurseDuration.png"]= { - ["x"]= 858, + ["x"]= 806, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/CurseEffectNode.png"]= { - ["x"]= 884, + ["x"]= 832, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/CurseManaCost.png"]= { - ["x"]= 910, + ["x"]= 858, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/CurseManaReservation.png"]= { - ["x"]= 936, + ["x"]= 884, ["y"]= 52, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/CursemitigationclusterNode.png"]= { + ["x"]= 910, + ["y"]= 52, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/CybilsClawNode.png"]= { + ["x"]= 936, + ["y"]= 52, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/DamageOverTime.png"]= { + ["x"]= 962, + ["y"]= 52, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/DamageOverTimeNode.png"]= { ["x"]= 0, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/CybilsClawNode.png"]= { + ["Art/2DArt/SkillIcons/passives/DeadEye/ProjectileDamageAccuracy.png"]= { ["x"]= 26, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/DamageOverTime.png"]= { + ["Art/2DArt/SkillIcons/passives/DeadEye/ProjectileDamageAttackSpeed.png"]= { ["x"]= 52, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/DamageOverTimeNode.png"]= { + ["Art/2DArt/SkillIcons/passives/DivineFury.png"]= { ["x"]= 78, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/DeadEye/ProjectileDamageAccuracy.png"]= { + ["Art/2DArt/SkillIcons/passives/DivineWrath.png"]= { ["x"]= 104, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/DeadEye/ProjectileDamageAttackSpeed.png"]= { + ["Art/2DArt/SkillIcons/passives/DmgHeraldSkillsNode.png"]= { ["x"]= 130, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/DivineFury.png"]= { + ["Art/2DArt/SkillIcons/passives/DmgWhenChannelSkillsNode.png"]= { ["x"]= 156, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/DivineWrath.png"]= { + ["Art/2DArt/SkillIcons/passives/DodgeAtksNode.png"]= { ["x"]= 182, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/DmgHeraldSkillsNode.png"]= { + ["Art/2DArt/SkillIcons/passives/DualWieldNodeDefensive.png"]= { ["x"]= 208, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/DmgWhenChannelSkillsNode.png"]= { + ["Art/2DArt/SkillIcons/passives/DualWieldNodeOffensive.png"]= { ["x"]= 234, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/DodgeAtksNode.png"]= { + ["Art/2DArt/SkillIcons/passives/DurationofMinionsNode.png"]= { ["x"]= 260, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/DualWieldNodeDefensive.png"]= { + ["Art/2DArt/SkillIcons/passives/ElementalDamagenode.png"]= { ["x"]= 286, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/DualWieldNodeOffensive.png"]= { + ["Art/2DArt/SkillIcons/passives/ElementalResistance2.png"]= { ["x"]= 312, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/DurationofMinionsNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Elementalist/ElementalDamageAttackCasteSpeed.png"]= { ["x"]= 338, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/ElementalDamagenode.png"]= { + ["Art/2DArt/SkillIcons/passives/Elementalist/ElementalDamageElementalResistances.png"]= { ["x"]= 364, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/ElementalResistance2.png"]= { + ["Art/2DArt/SkillIcons/passives/Elementalist/ElementalDamageFreezeShockIgnite.png"]= { ["x"]= 390, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Elementalist/ElementalDamageAttackCasteSpeed.png"]= { + ["Art/2DArt/SkillIcons/passives/EmpoweredAttackWarcryNode1.png"]= { ["x"]= 416, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Elementalist/ElementalDamageElementalResistances.png"]= { + ["Art/2DArt/SkillIcons/passives/EnergyShieldNode.png"]= { ["x"]= 442, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Elementalist/ElementalDamageFreezeShockIgnite.png"]= { + ["Art/2DArt/SkillIcons/passives/EnergyshieldLeechPassivessmall.png"]= { ["x"]= 468, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/EmpoweredAttackWarcryNode1.png"]= { + ["Art/2DArt/SkillIcons/passives/EvasionNode.png"]= { ["x"]= 494, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/EnergyShieldNode.png"]= { + ["Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.png"]= { ["x"]= 520, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/EnergyshieldLeechPassivessmall.png"]= { + ["Art/2DArt/SkillIcons/passives/FireDamageOverTimeNode.png"]= { ["x"]= 546, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/EvasionNode.png"]= { + ["Art/2DArt/SkillIcons/passives/FireDamagenode.png"]= { ["x"]= 572, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.png"]= { + ["Art/2DArt/SkillIcons/passives/FireResistNode.png"]= { ["x"]= 598, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/FireDamageOverTimeNode.png"]= { + ["Art/2DArt/SkillIcons/passives/FlaskDurationnode.png"]= { ["x"]= 624, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/FireDamagenode.png"]= { + ["Art/2DArt/SkillIcons/passives/FortifyNode.png"]= { ["x"]= 650, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/FireResistNode.png"]= { + ["Art/2DArt/SkillIcons/passives/GenericWarcryNode1.png"]= { ["x"]= 676, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/FlaskDurationnode.png"]= { + ["Art/2DArt/SkillIcons/passives/GenericWarcryNode2.png"]= { ["x"]= 702, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/FortifyNode.png"]= { + ["Art/2DArt/SkillIcons/passives/GenericWarcryNode3.png"]= { ["x"]= 728, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/GenericWarcryNode1.png"]= { + ["Art/2DArt/SkillIcons/passives/Gladiator/GLADBlockChance.png"]= { ["x"]= 754, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/GenericWarcryNode2.png"]= { + ["Art/2DArt/SkillIcons/passives/Gladiator/GLADOneHand.png"]= { ["x"]= 780, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/GenericWarcryNode3.png"]= { + ["Art/2DArt/SkillIcons/passives/GolemsNode.png"]= { ["x"]= 806, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Gladiator/GLADBlockChance.png"]= { + ["Art/2DArt/SkillIcons/passives/GraceoftheGoddessNode.png"]= { ["x"]= 832, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Gladiator/GLADOneHand.png"]= { + ["Art/2DArt/SkillIcons/passives/GreenPhysicalDamageNode.png"]= { ["x"]= 858, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/GolemsNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Guardian/ArmourEnergyMeleeDamage.png"]= { ["x"]= 884, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/GraceoftheGoddessNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Guardian/ArmourEnergyShieldDefenseFromShields.png"]= { ["x"]= 910, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/GreenPhysicalDamageNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Guardian/ArmourEnergyShieldManaPool.png"]= { ["x"]= 936, ["y"]= 78, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Guardian/ArmourEnergyMeleeDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/Guardian/ArmourEnergyShieldStaves.png"]= { + ["x"]= 962, + ["y"]= 78, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Guardian/GuardianHallowingFlameNode.png"]= { ["x"]= 0, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Guardian/ArmourEnergyShieldDefenseFromShields.png"]= { + ["Art/2DArt/SkillIcons/passives/Guardian/Minion Damage Armour and Energy Shield.png"]= { ["x"]= 26, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Guardian/ArmourEnergyShieldManaPool.png"]= { + ["Art/2DArt/SkillIcons/passives/Guardian/TimeOfNeed.png"]= { ["x"]= 52, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Guardian/ArmourEnergyShieldStaves.png"]= { + ["Art/2DArt/SkillIcons/passives/HalfColdHalfLightning.png"]= { ["x"]= 78, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Guardian/GuardianHallowingFlameNode.png"]= { + ["Art/2DArt/SkillIcons/passives/HeartbreakerNode.png"]= { ["x"]= 104, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Guardian/Minion Damage Armour and Energy Shield.png"]= { + ["Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.png"]= { ["x"]= 130, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Guardian/TimeOfNeed.png"]= { + ["Art/2DArt/SkillIcons/passives/HeraldDamageNotable.png"]= { ["x"]= 156, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/HalfColdHalfLightning.png"]= { + ["Art/2DArt/SkillIcons/passives/HeraldReservationNode.png"]= { ["x"]= 182, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/HeartbreakerNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Hierophant/ManaRegen.png"]= { ["x"]= 208, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.png"]= { + ["Art/2DArt/SkillIcons/passives/IgniteBleedNode.png"]= { ["x"]= 234, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/HeraldDamageNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/ImapleNode.png"]= { ["x"]= 260, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/HeraldReservationNode.png"]= { + ["Art/2DArt/SkillIcons/passives/ImpaleNode2.png"]= { ["x"]= 286, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Hierophant/ManaRegen.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreaseCritChanceNode.png"]= { ["x"]= 312, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/IgniteBleedNode.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreaseMinionLifeNode.png"]= { ["x"]= 338, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/ImapleNode.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreasedAttackDamageNode.png"]= { ["x"]= 364, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/ImpaleNode2.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreasedManaCostNode.png"]= { ["x"]= 390, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/IncreaseCritChanceNode.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreasedMaximumLifeNode.png"]= { ["x"]= 416, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/IncreaseMinionLifeNode.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreasedMinionDamageNode.png"]= { ["x"]= 442, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/IncreasedAttackDamageNode.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreasedNonDamageAilmentNode.png"]= { ["x"]= 468, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/IncreasedManaCostNode.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreasedProjectileSpeedNode.png"]= { ["x"]= 494, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/IncreasedMaximumLifeNode.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreasedSpellDamageNode.png"]= { ["x"]= 520, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/IncreasedMinionDamageNode.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreasedWarcryNode.png"]= { ["x"]= 546, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/IncreasedNonDamageAilmentNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageAttackCasteSpeed.png"]= { ["x"]= 572, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/IncreasedProjectileSpeedNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageAvoidElementalStatusEffects.png"]= { ["x"]= 598, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/IncreasedSpellDamageNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageCasteSpeed.png"]= { ["x"]= 624, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/IncreasedWarcryNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageElementalPenetration.png"]= { ["x"]= 650, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageAttackCasteSpeed.png"]= { + ["Art/2DArt/SkillIcons/passives/JacktheaxeNode.png"]= { ["x"]= 676, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageAvoidElementalStatusEffects.png"]= { + ["Art/2DArt/SkillIcons/passives/Juggernaut/IncreasedArmourAttackDamage.png"]= { ["x"]= 702, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageCasteSpeed.png"]= { + ["Art/2DArt/SkillIcons/passives/Juggernaut/IncreasedArmourAttackSpeed.png"]= { ["x"]= 728, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageElementalPenetration.png"]= { + ["Art/2DArt/SkillIcons/passives/Juggernaut/IncreasedArmourLifeRegeneration.png"]= { ["x"]= 754, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/JacktheaxeNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Juggernaut/IncreasedArmourMovementSpeed.png"]= { ["x"]= 780, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Juggernaut/IncreasedArmourAttackDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/Juggernaut/IncreasedArmourStunDuration.png"]= { ["x"]= 806, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Juggernaut/IncreasedArmourAttackSpeed.png"]= { + ["Art/2DArt/SkillIcons/passives/Juggernaut/JuggernautArmourNotable.png"]= { ["x"]= 832, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Juggernaut/IncreasedArmourLifeRegeneration.png"]= { + ["Art/2DArt/SkillIcons/passives/KeystoneArmourMaster.png"]= { ["x"]= 858, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Juggernaut/IncreasedArmourMovementSpeed.png"]= { + ["Art/2DArt/SkillIcons/passives/KiloavaShieldNode.png"]= { ["x"]= 884, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Juggernaut/IncreasedArmourStunDuration.png"]= { + ["Art/2DArt/SkillIcons/passives/KitavasHungerNode.png"]= { ["x"]= 910, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Juggernaut/JuggernautArmourNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/LifeAndEnergyShield.png"]= { ["x"]= 936, ["y"]= 104, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/KeystoneArmourMaster.png"]= { + ["Art/2DArt/SkillIcons/passives/LifeAndReducedManaCost.png"]= { + ["x"]= 962, + ["y"]= 104, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/LifeManaFlasksrecoverynode.png"]= { ["x"]= 0, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/KiloavaShieldNode.png"]= { + ["Art/2DArt/SkillIcons/passives/LifeRecoupNode.png"]= { ["x"]= 26, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/KitavasHungerNode.png"]= { + ["Art/2DArt/SkillIcons/passives/LifeandCurses.png"]= { ["x"]= 52, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/LifeAndEnergyShield.png"]= { + ["Art/2DArt/SkillIcons/passives/LifeandMana.png"]= { ["x"]= 78, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/LifeAndReducedManaCost.png"]= { + ["Art/2DArt/SkillIcons/passives/LightningDamagenode.png"]= { ["x"]= 104, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/LifeManaFlasksrecoverynode.png"]= { + ["Art/2DArt/SkillIcons/passives/LightningResistNode.png"]= { ["x"]= 130, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/LifeRecoupNode.png"]= { + ["Art/2DArt/SkillIcons/passives/MaataSceptreNode.png"]= { ["x"]= 156, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/LifeandCurses.png"]= { + ["Art/2DArt/SkillIcons/passives/MaceElemental.png"]= { ["x"]= 182, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/LifeandMana.png"]= { + ["Art/2DArt/SkillIcons/passives/ManaAndEnergyShield.png"]= { ["x"]= 208, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/LightningDamagenode.png"]= { + ["Art/2DArt/SkillIcons/passives/ManaLeechThemedNode.png"]= { ["x"]= 234, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/LightningResistNode.png"]= { + ["Art/2DArt/SkillIcons/passives/ManaandCurses2.png"]= { ["x"]= 260, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/MaataSceptreNode.png"]= { + ["Art/2DArt/SkillIcons/passives/MarkNode.png"]= { ["x"]= 286, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/MaceElemental.png"]= { + ["Art/2DArt/SkillIcons/passives/MasteryBlank.png"]= { ["x"]= 312, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/ManaAndEnergyShield.png"]= { + ["Art/2DArt/SkillIcons/passives/MawOfConquestNode.png"]= { ["x"]= 338, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/ManaLeechThemedNode.png"]= { + ["Art/2DArt/SkillIcons/passives/MaxManaNode.png"]= { ["x"]= 364, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/ManaandCurses2.png"]= { + ["Art/2DArt/SkillIcons/passives/MeleeAoENode.png"]= { ["x"]= 390, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/MarkNode.png"]= { + ["Art/2DArt/SkillIcons/passives/MeleeCriticalStrikeChanceNode.png"]= { ["x"]= 416, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/MasteryBlank.png"]= { + ["Art/2DArt/SkillIcons/passives/MeleeCriticalStrikeMultiplierNode.png"]= { ["x"]= 442, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/MawOfConquestNode.png"]= { + ["Art/2DArt/SkillIcons/passives/MeleeFireNode.png"]= { ["x"]= 468, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/MaxManaNode.png"]= { + ["Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.png"]= { ["x"]= 494, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/MeleeAoENode.png"]= { + ["Art/2DArt/SkillIcons/passives/MineManaReservationNode.png"]= { ["x"]= 520, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/MeleeCriticalStrikeChanceNode.png"]= { + ["Art/2DArt/SkillIcons/passives/MinionAccuracyDamage.png"]= { ["x"]= 546, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/MeleeCriticalStrikeMultiplierNode.png"]= { + ["Art/2DArt/SkillIcons/passives/MinionChaosResistanceNode.png"]= { ["x"]= 572, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/MeleeFireNode.png"]= { + ["Art/2DArt/SkillIcons/passives/MinionDmgHeraldSkillsNode.png"]= { ["x"]= 598, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.png"]= { + ["Art/2DArt/SkillIcons/passives/MinionElementalResistancesNode.png"]= { ["x"]= 624, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/MineManaReservationNode.png"]= { + ["Art/2DArt/SkillIcons/passives/MovementSpeedandEvasionPassive.png"]= { ["x"]= 650, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/MinionAccuracyDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/MysticRefractorNode.png"]= { ["x"]= 676, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/MinionChaosResistanceNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Necromancer/CorpseConsumptionNode.png"]= { ["x"]= 702, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/MinionDmgHeraldSkillsNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Necromancer/IncreasedMinionDamageIncreasedMinionLife.png"]= { ["x"]= 728, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/MinionElementalResistancesNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Necromancer/IncreasedMinionDamageIncreasedSkillDuration.png"]= { ["x"]= 754, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/MovementSpeedandEvasionPassive.png"]= { + ["Art/2DArt/SkillIcons/passives/Necromancer/ManaNode.png"]= { ["x"]= 780, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/MysticRefractorNode.png"]= { + ["Art/2DArt/SkillIcons/passives/NodeAxeandSwordDamage.png"]= { ["x"]= 806, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Necromancer/CorpseConsumptionNode.png"]= { + ["Art/2DArt/SkillIcons/passives/NodeBowDamage.png"]= { ["x"]= 832, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Necromancer/IncreasedMinionDamageIncreasedMinionLife.png"]= { + ["Art/2DArt/SkillIcons/passives/NodeDaggerandClawDamage.png"]= { ["x"]= 858, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Necromancer/IncreasedMinionDamageIncreasedSkillDuration.png"]= { + ["Art/2DArt/SkillIcons/passives/NodeDualWieldingDamage.png"]= { ["x"]= 884, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Necromancer/ManaNode.png"]= { + ["Art/2DArt/SkillIcons/passives/NodeHoldingShieldDamage.png"]= { ["x"]= 910, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/NodeAxeandSwordDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/NodeMaceandStaffDamage.png"]= { ["x"]= 936, ["y"]= 130, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/NodeBowDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/NodeTwoHandedMeleeDamage.png"]= { + ["x"]= 962, + ["y"]= 130, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/NodeWandDamage.png"]= { ["x"]= 0, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/NodeDaggerandClawDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/Occultist/EnergyShieldChaos.png"]= { ["x"]= 26, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/NodeDualWieldingDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/Occultist/EnergyShieldCold.png"]= { ["x"]= 52, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/NodeHoldingShieldDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/Occultist/IncreasedEnergyShieldAttackAndCastSpeed.png"]= { ["x"]= 78, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/NodeMaceandStaffDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/Occultist/IncreasedEnergyShieldCriticalStrikeChance.png"]= { ["x"]= 104, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/NodeTwoHandedMeleeDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/Occultist/IncreasedEnergyShieldManaReservation.png"]= { ["x"]= 130, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/NodeWandDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/Occultist/IncreasedEnergyShieldMaximumMana.png"]= { ["x"]= 156, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Occultist/EnergyShieldChaos.png"]= { + ["Art/2DArt/SkillIcons/passives/OneHandedPhysicalAndLeechNode.png"]= { ["x"]= 182, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Occultist/EnergyShieldCold.png"]= { + ["Art/2DArt/SkillIcons/passives/OneHandedPhysicalAndLeechNotable.png"]= { ["x"]= 208, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Occultist/IncreasedEnergyShieldAttackAndCastSpeed.png"]= { + ["Art/2DArt/SkillIcons/passives/PathFinder/FlaskEffectDamageOverTime.png"]= { ["x"]= 234, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Occultist/IncreasedEnergyShieldCriticalStrikeChance.png"]= { + ["Art/2DArt/SkillIcons/passives/PathFinder/FlaskEffectElementalResistance.png"]= { ["x"]= 260, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Occultist/IncreasedEnergyShieldManaReservation.png"]= { + ["Art/2DArt/SkillIcons/passives/PathFinder/FlaskEffectFlaskDuration.png"]= { ["x"]= 286, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Occultist/IncreasedEnergyShieldMaximumMana.png"]= { + ["Art/2DArt/SkillIcons/passives/PhysicalDamageNode.png"]= { ["x"]= 312, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/OneHandedPhysicalAndLeechNode.png"]= { + ["Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.png"]= { ["x"]= 338, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/OneHandedPhysicalAndLeechNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimenode3.png"]= { ["x"]= 364, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/PathFinder/FlaskEffectDamageOverTime.png"]= { + ["Art/2DArt/SkillIcons/passives/PhysicalDamagenode2.png"]= { ["x"]= 390, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/PathFinder/FlaskEffectElementalResistance.png"]= { + ["Art/2DArt/SkillIcons/passives/PhysicalandChaosDamage.png"]= { ["x"]= 416, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/PathFinder/FlaskEffectFlaskDuration.png"]= { + ["Art/2DArt/SkillIcons/passives/Poison.png"]= { ["x"]= 442, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/PhysicalDamageNode.png"]= { + ["Art/2DArt/SkillIcons/passives/PoisonSpellsNode.png"]= { ["x"]= 468, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Primalist/PrimalistNode.png"]= { ["x"]= 494, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimenode3.png"]= { + ["Art/2DArt/SkillIcons/passives/PrimordialCaneNode.png"]= { ["x"]= 520, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/PhysicalDamagenode2.png"]= { + ["Art/2DArt/SkillIcons/passives/ProjectileDmgNode.png"]= { ["x"]= 546, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/PhysicalandChaosDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/ProjectilesNode.png"]= { ["x"]= 572, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Poison.png"]= { + ["Art/2DArt/SkillIcons/passives/ProjectilesNode2.png"]= { ["x"]= 598, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/PoisonSpellsNode.png"]= { + ["Art/2DArt/SkillIcons/passives/ProsperosProtectionNode.png"]= { ["x"]= 624, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Primalist/PrimalistNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Rage.png"]= { ["x"]= 650, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/PrimordialCaneNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Raider/IncreasedElementalDamage.png"]= { ["x"]= 676, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/ProjectileDmgNode.png"]= { + ["Art/2DArt/SkillIcons/passives/RangedTotemAttackSpeed.png"]= { ["x"]= 702, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/ProjectilesNode.png"]= { + ["Art/2DArt/SkillIcons/passives/RangedTotemDamage.png"]= { ["x"]= 728, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/ProjectilesNode2.png"]= { + ["Art/2DArt/SkillIcons/passives/RedAttackSmallPassive.png"]= { ["x"]= 754, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/ProsperosProtectionNode.png"]= { + ["Art/2DArt/SkillIcons/passives/ReducedManaCostNode.png"]= { ["x"]= 780, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Rage.png"]= { + ["Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.png"]= { ["x"]= 806, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Raider/IncreasedElementalDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/RetaliationNode1.png"]= { ["x"]= 832, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/RangedTotemAttackSpeed.png"]= { + ["Art/2DArt/SkillIcons/passives/RetaliationNode2.png"]= { ["x"]= 858, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/RangedTotemDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/RetaliationNode3.png"]= { ["x"]= 884, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/RedAttackSmallPassive.png"]= { + ["Art/2DArt/SkillIcons/passives/RetaliationNode4.png"]= { ["x"]= 910, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/ReducedManaCostNode.png"]= { + ["Art/2DArt/SkillIcons/passives/RetaliationNode5.png"]= { ["x"]= 936, ["y"]= 156, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Saboteur/ElementalDamageElementalResistance.png"]= { + ["x"]= 962, + ["y"]= 156, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Saboteur/ElementalDamageMines.png"]= { ["x"]= 0, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/RetaliationNode1.png"]= { + ["Art/2DArt/SkillIcons/passives/Saboteur/ElementalDamageMovementSpeed.png"]= { ["x"]= 26, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/RetaliationNode2.png"]= { + ["Art/2DArt/SkillIcons/passives/SareshBloodlineNode.png"]= { ["x"]= 52, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/RetaliationNode3.png"]= { + ["Art/2DArt/SkillIcons/passives/SharpandBrittle.png"]= { ["x"]= 78, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/RetaliationNode4.png"]= { + ["Art/2DArt/SkillIcons/passives/ShieldAttackDamage.png"]= { ["x"]= 104, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/RetaliationNode5.png"]= { + ["Art/2DArt/SkillIcons/passives/ShieldNodeOffensive.png"]= { ["x"]= 130, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Saboteur/ElementalDamageElementalResistance.png"]= { + ["Art/2DArt/SkillIcons/passives/Slayer/2HdmgAOE.png"]= { ["x"]= 156, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Saboteur/ElementalDamageMines.png"]= { + ["Art/2DArt/SkillIcons/passives/Slayer/2HdmgCritStrikeMultiplier.png"]= { ["x"]= 182, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Saboteur/ElementalDamageMovementSpeed.png"]= { + ["Art/2DArt/SkillIcons/passives/Slayer/2HdmgFrenzyEnduranceCharge.png"]= { ["x"]= 208, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/SareshBloodlineNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Slayer/2HdmgLeech.png"]= { ["x"]= 234, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/SharpandBrittle.png"]= { + ["Art/2DArt/SkillIcons/passives/Slayer/2HdmgSpeed.png"]= { ["x"]= 260, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/ShieldAttackDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/SpeedWarcryNode1.png"]= { ["x"]= 286, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/ShieldNodeOffensive.png"]= { + ["Art/2DArt/SkillIcons/passives/SpellMultiplyer2.png"]= { ["x"]= 312, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Slayer/2HdmgAOE.png"]= { + ["Art/2DArt/SkillIcons/passives/SpellSuppresionNode.png"]= { ["x"]= 338, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Slayer/2HdmgCritStrikeMultiplier.png"]= { + ["Art/2DArt/SkillIcons/passives/SpellSuppressionEnergyShield.png"]= { ["x"]= 364, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Slayer/2HdmgFrenzyEnduranceCharge.png"]= { + ["Art/2DArt/SkillIcons/passives/SpellSuppressionLifeFlasks.png"]= { ["x"]= 390, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Slayer/2HdmgLeech.png"]= { + ["Art/2DArt/SkillIcons/passives/StaffNodeDefensive.png"]= { ["x"]= 416, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Slayer/2HdmgSpeed.png"]= { + ["Art/2DArt/SkillIcons/passives/StaffNodeOffensive.png"]= { ["x"]= 442, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/SpeedWarcryNode1.png"]= { + ["Art/2DArt/SkillIcons/passives/StanceSmallPassive.png"]= { ["x"]= 468, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/SpellMultiplyer2.png"]= { + ["Art/2DArt/SkillIcons/passives/StancesNode.png"]= { ["x"]= 494, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/SpellSuppresionNode.png"]= { + ["Art/2DArt/SkillIcons/passives/StrikeRangeNode.png"]= { ["x"]= 520, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/SpellSuppressionEnergyShield.png"]= { + ["Art/2DArt/SkillIcons/passives/TearOfPurityNode.png"]= { ["x"]= 546, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/SpellSuppressionLifeFlasks.png"]= { + ["Art/2DArt/SkillIcons/passives/TerminusEstNode.png"]= { ["x"]= 572, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/StaffNodeDefensive.png"]= { + ["Art/2DArt/SkillIcons/passives/TheBurdenOfTruthNode.png"]= { ["x"]= 598, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/StaffNodeOffensive.png"]= { + ["Art/2DArt/SkillIcons/passives/TheBurdenofShadowsNode.png"]= { ["x"]= 624, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/StanceSmallPassive.png"]= { + ["Art/2DArt/SkillIcons/passives/TinctureFlaskNode1.png"]= { ["x"]= 650, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/StancesNode.png"]= { + ["Art/2DArt/SkillIcons/passives/TinctureNode1.png"]= { ["x"]= 676, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/StrikeRangeNode.png"]= { + ["Art/2DArt/SkillIcons/passives/TinctureNode2.png"]= { ["x"]= 702, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/TearOfPurityNode.png"]= { + ["Art/2DArt/SkillIcons/passives/TinctureNode3.png"]= { ["x"]= 728, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/TerminusEstNode.png"]= { + ["Art/2DArt/SkillIcons/passives/TotemDmgNode.png"]= { ["x"]= 754, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/TheBurdenOfTruthNode.png"]= { + ["Art/2DArt/SkillIcons/passives/TrapAndMineDmgNode.png"]= { ["x"]= 780, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/TheBurdenofShadowsNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Trickster/DefensiveNodeTrickster.png"]= { ["x"]= 806, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/TinctureFlaskNode1.png"]= { + ["Art/2DArt/SkillIcons/passives/Trickster/OffensiveNodeTrickster.png"]= { ["x"]= 832, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/TinctureNode1.png"]= { + ["Art/2DArt/SkillIcons/passives/VersusoBootsNode.png"]= { ["x"]= 858, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/TinctureNode2.png"]= { + ["Art/2DArt/SkillIcons/passives/VictariosJacketNode.png"]= { ["x"]= 884, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/TinctureNode3.png"]= { + ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanCurses2.png"]= { ["x"]= 910, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/TotemDmgNode.png"]= { + ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanNode.png"]= { ["x"]= 936, ["y"]= 182, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/TrapAndMineDmgNode.png"]= { + ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanSpecialCurse1.png"]= { + ["x"]= 962, + ["y"]= 182, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanSpecialCurse2.png"]= { ["x"]= 0, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Trickster/DefensiveNodeTrickster.png"]= { + ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanSpecialCurse3.png"]= { ["x"]= 26, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Trickster/OffensiveNodeTrickster.png"]= { + ["Art/2DArt/SkillIcons/passives/WandCritical.png"]= { ["x"]= 52, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/VersusoBootsNode.png"]= { + ["Art/2DArt/SkillIcons/passives/WandSpeedAccuracyNode.png"]= { ["x"]= 78, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/VictariosJacketNode.png"]= { + ["Art/2DArt/SkillIcons/passives/WarCryCooldown.png"]= { ["x"]= 104, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanCurses2.png"]= { + ["Art/2DArt/SkillIcons/passives/WarcryBuffEffectNotable.png"]= { ["x"]= 130, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Warden/SpellSuppressionEvasion.png"]= { ["x"]= 156, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanSpecialCurse1.png"]= { + ["Art/2DArt/SkillIcons/passives/Warden/TincturesNode.png"]= { ["x"]= 182, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanSpecialCurse2.png"]= { + ["Art/2DArt/SkillIcons/passives/Warden/WardenNode.png"]= { ["x"]= 208, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanSpecialCurse3.png"]= { + ["Art/2DArt/SkillIcons/passives/Warden/WardenTracking.png"]= { ["x"]= 234, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/WandCritical.png"]= { + ["Art/2DArt/SkillIcons/passives/WarpedTimepieceNode.png"]= { ["x"]= 260, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/WandSpeedAccuracyNode.png"]= { + ["Art/2DArt/SkillIcons/passives/WidowhailBowNode.png"]= { ["x"]= 286, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/WarCryCooldown.png"]= { + ["Art/2DArt/SkillIcons/passives/accuracy.png"]= { ["x"]= 312, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/WarcryBuffEffectNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/accuracy2h.png"]= { ["x"]= 338, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Warden/SpellSuppressionEvasion.png"]= { + ["Art/2DArt/SkillIcons/passives/accuracydex.png"]= { ["x"]= 364, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Warden/TincturesNode.png"]= { + ["Art/2DArt/SkillIcons/passives/accuracysword.png"]= { ["x"]= 390, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Warden/WardenNode.png"]= { + ["Art/2DArt/SkillIcons/passives/arcaneradience.png"]= { ["x"]= 416, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/Warden/WardenTracking.png"]= { + ["Art/2DArt/SkillIcons/passives/areaofeffect.png"]= { ["x"]= 442, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/WarpedTimepieceNode.png"]= { + ["Art/2DArt/SkillIcons/passives/attackspeed.png"]= { ["x"]= 468, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/WidowhailBowNode.png"]= { + ["Art/2DArt/SkillIcons/passives/attackspeed2h.png"]= { ["x"]= 494, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/accuracy.png"]= { + ["Art/2DArt/SkillIcons/passives/attackspeedaxe.png"]= { ["x"]= 520, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/accuracy2h.png"]= { + ["Art/2DArt/SkillIcons/passives/attackspeedbow.png"]= { ["x"]= 546, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/accuracydex.png"]= { + ["Art/2DArt/SkillIcons/passives/attackspeedclaw.png"]= { ["x"]= 572, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/accuracysword.png"]= { + ["Art/2DArt/SkillIcons/passives/attackspeeddagger.png"]= { ["x"]= 598, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/arcaneradience.png"]= { + ["Art/2DArt/SkillIcons/passives/attackspeeddual.png"]= { ["x"]= 624, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/areaofeffect.png"]= { + ["Art/2DArt/SkillIcons/passives/attackspeedmace.png"]= { ["x"]= 650, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/attackspeed.png"]= { + ["Art/2DArt/SkillIcons/passives/attackspeedsworddex.png"]= { ["x"]= 676, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/attackspeed2h.png"]= { + ["Art/2DArt/SkillIcons/passives/auraareaofeffect.png"]= { ["x"]= 702, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/attackspeedaxe.png"]= { + ["Art/2DArt/SkillIcons/passives/auraeffect.png"]= { ["x"]= 728, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/attackspeedbow.png"]= { + ["Art/2DArt/SkillIcons/passives/avoidburning.png"]= { ["x"]= 754, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/attackspeedclaw.png"]= { + ["Art/2DArt/SkillIcons/passives/avoidchilling.png"]= { ["x"]= 780, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/attackspeeddagger.png"]= { + ["Art/2DArt/SkillIcons/passives/axedmgspeed.png"]= { ["x"]= 806, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/attackspeeddual.png"]= { + ["Art/2DArt/SkillIcons/passives/blankDex.png"]= { ["x"]= 832, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/attackspeedmace.png"]= { + ["Art/2DArt/SkillIcons/passives/blankInt.png"]= { ["x"]= 858, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/attackspeedsworddex.png"]= { + ["Art/2DArt/SkillIcons/passives/blankStr.png"]= { ["x"]= 884, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/auraareaofeffect.png"]= { + ["Art/2DArt/SkillIcons/passives/blastradius.png"]= { ["x"]= 910, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/auraeffect.png"]= { + ["Art/2DArt/SkillIcons/passives/blockstaff.png"]= { ["x"]= 936, ["y"]= 208, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/avoidburning.png"]= { + ["Art/2DArt/SkillIcons/passives/blockstr.png"]= { + ["x"]= 962, + ["y"]= 208, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/castavoidinterruption.png"]= { ["x"]= 0, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/avoidchilling.png"]= { + ["Art/2DArt/SkillIcons/passives/castspeed.png"]= { ["x"]= 26, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/axedmgspeed.png"]= { + ["Art/2DArt/SkillIcons/passives/chargedex.png"]= { ["x"]= 52, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/blankDex.png"]= { + ["Art/2DArt/SkillIcons/passives/chargeint.png"]= { ["x"]= 78, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/blankInt.png"]= { + ["Art/2DArt/SkillIcons/passives/chargestr.png"]= { ["x"]= 104, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/blankStr.png"]= { + ["Art/2DArt/SkillIcons/passives/clawmasterydex.png"]= { ["x"]= 130, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/blastradius.png"]= { + ["Art/2DArt/SkillIcons/passives/clustersLinknode1.png"]= { ["x"]= 156, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/blockstaff.png"]= { + ["Art/2DArt/SkillIcons/passives/clustersLinknode2.png"]= { ["x"]= 182, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/blockstr.png"]= { + ["Art/2DArt/SkillIcons/passives/colddamage.png"]= { ["x"]= 208, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/castavoidinterruption.png"]= { + ["Art/2DArt/SkillIcons/passives/coldresist.png"]= { ["x"]= 234, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/castspeed.png"]= { + ["Art/2DArt/SkillIcons/passives/criticalbow.png"]= { ["x"]= 260, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/chargedex.png"]= { + ["Art/2DArt/SkillIcons/passives/criticalclaw.png"]= { ["x"]= 286, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/chargeint.png"]= { + ["Art/2DArt/SkillIcons/passives/criticaldaggerdex.png"]= { ["x"]= 312, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/chargestr.png"]= { + ["Art/2DArt/SkillIcons/passives/criticaldaggerint.png"]= { ["x"]= 338, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/clawmasterydex.png"]= { + ["Art/2DArt/SkillIcons/passives/criticalstrikechance.png"]= { ["x"]= 364, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/clustersLinknode1.png"]= { + ["Art/2DArt/SkillIcons/passives/criticalstrikechance2.png"]= { ["x"]= 390, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/clustersLinknode2.png"]= { + ["Art/2DArt/SkillIcons/passives/criticalstrikemultiplier.png"]= { ["x"]= 416, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/colddamage.png"]= { + ["Art/2DArt/SkillIcons/passives/criticalstrikemultiplier2.png"]= { ["x"]= 442, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/coldresist.png"]= { + ["Art/2DArt/SkillIcons/passives/critstrchnc.png"]= { ["x"]= 468, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/criticalbow.png"]= { + ["Art/2DArt/SkillIcons/passives/crystalskin.png"]= { ["x"]= 494, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/criticalclaw.png"]= { + ["Art/2DArt/SkillIcons/passives/damage.png"]= { ["x"]= 520, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/criticaldaggerdex.png"]= { + ["Art/2DArt/SkillIcons/passives/damage_blue.png"]= { ["x"]= 546, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/criticaldaggerint.png"]= { + ["Art/2DArt/SkillIcons/passives/damageaxe.png"]= { ["x"]= 572, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/criticalstrikechance.png"]= { + ["Art/2DArt/SkillIcons/passives/damagedualwield.png"]= { ["x"]= 598, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/criticalstrikechance2.png"]= { + ["Art/2DArt/SkillIcons/passives/damagedualwieldgreen.png"]= { ["x"]= 624, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/criticalstrikemultiplier.png"]= { + ["Art/2DArt/SkillIcons/passives/damagemelee.png"]= { ["x"]= 650, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/criticalstrikemultiplier2.png"]= { + ["Art/2DArt/SkillIcons/passives/damagespells.png"]= { ["x"]= 676, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/critstrchnc.png"]= { + ["Art/2DArt/SkillIcons/passives/damagestaff.png"]= { ["x"]= 702, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/crystalskin.png"]= { + ["Art/2DArt/SkillIcons/passives/damagesword.png"]= { ["x"]= 728, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/damage.png"]= { + ["Art/2DArt/SkillIcons/passives/dmgreduction.png"]= { ["x"]= 754, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/damage_blue.png"]= { + ["Art/2DArt/SkillIcons/passives/dualwieldaccuracy.png"]= { ["x"]= 780, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/damageaxe.png"]= { + ["Art/2DArt/SkillIcons/passives/dualwieldblock.png"]= { ["x"]= 806, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/damagedualwield.png"]= { + ["Art/2DArt/SkillIcons/passives/elementaldamage.png"]= { ["x"]= 832, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/damagedualwieldgreen.png"]= { + ["Art/2DArt/SkillIcons/passives/energyshield.png"]= { ["x"]= 858, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/damagemelee.png"]= { + ["Art/2DArt/SkillIcons/passives/evade.png"]= { ["x"]= 884, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/damagespells.png"]= { + ["Art/2DArt/SkillIcons/passives/evadepercentage.png"]= { ["x"]= 910, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/damagestaff.png"]= { + ["Art/2DArt/SkillIcons/passives/evasion.png"]= { ["x"]= 936, ["y"]= 234, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/damagesword.png"]= { + ["Art/2DArt/SkillIcons/passives/firedamage.png"]= { + ["x"]= 962, + ["y"]= 234, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/firedamageint.png"]= { ["x"]= 0, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/dmgreduction.png"]= { + ["Art/2DArt/SkillIcons/passives/firedamagestr.png"]= { ["x"]= 26, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/dualwieldaccuracy.png"]= { + ["Art/2DArt/SkillIcons/passives/fireresist.png"]= { ["x"]= 52, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/dualwieldblock.png"]= { + ["Art/2DArt/SkillIcons/passives/flaskdex.png"]= { ["x"]= 78, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/elementaldamage.png"]= { + ["Art/2DArt/SkillIcons/passives/flaskint.png"]= { ["x"]= 104, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/energyshield.png"]= { + ["Art/2DArt/SkillIcons/passives/flaskstr.png"]= { ["x"]= 130, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/evade.png"]= { + ["Art/2DArt/SkillIcons/passives/increased armor.png"]= { ["x"]= 156, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/evadepercentage.png"]= { + ["Art/2DArt/SkillIcons/passives/increasedarmorandlife.png"]= { ["x"]= 182, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/evasion.png"]= { + ["Art/2DArt/SkillIcons/passives/increasedrunspeeddex.png"]= { ["x"]= 208, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/firedamage.png"]= { + ["Art/2DArt/SkillIcons/passives/innerforce.png"]= { ["x"]= 234, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/firedamageint.png"]= { + ["Art/2DArt/SkillIcons/passives/knockback.png"]= { ["x"]= 260, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/firedamagestr.png"]= { + ["Art/2DArt/SkillIcons/passives/life1.png"]= { ["x"]= 286, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/fireresist.png"]= { + ["Art/2DArt/SkillIcons/passives/lifegainpertarget.png"]= { ["x"]= 312, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/flaskdex.png"]= { + ["Art/2DArt/SkillIcons/passives/lifeleech.png"]= { ["x"]= 338, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/flaskint.png"]= { + ["Art/2DArt/SkillIcons/passives/lifemana.png"]= { ["x"]= 364, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/flaskstr.png"]= { + ["Art/2DArt/SkillIcons/passives/lifepercentage.png"]= { ["x"]= 390, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/increased armor.png"]= { + ["Art/2DArt/SkillIcons/passives/lightningdex.png"]= { ["x"]= 416, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/increasedarmorandlife.png"]= { + ["Art/2DArt/SkillIcons/passives/lightningint.png"]= { ["x"]= 442, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/increasedrunspeeddex.png"]= { + ["Art/2DArt/SkillIcons/passives/lightningstr.png"]= { ["x"]= 468, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/innerforce.png"]= { + ["Art/2DArt/SkillIcons/passives/macecritdmgspeed.png"]= { ["x"]= 494, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/knockback.png"]= { + ["Art/2DArt/SkillIcons/passives/macedmg.png"]= { ["x"]= 520, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/life1.png"]= { + ["Art/2DArt/SkillIcons/passives/mana.png"]= { ["x"]= 546, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/lifegainpertarget.png"]= { + ["Art/2DArt/SkillIcons/passives/manaregeneration.png"]= { ["x"]= 572, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/lifeleech.png"]= { + ["Art/2DArt/SkillIcons/passives/manareservationreduction.png"]= { ["x"]= 598, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/lifemana.png"]= { + ["Art/2DArt/SkillIcons/passives/manastr.png"]= { ["x"]= 624, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/lifepercentage.png"]= { + ["Art/2DArt/SkillIcons/passives/masterydaggerdex.png"]= { ["x"]= 650, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/lightningdex.png"]= { + ["Art/2DArt/SkillIcons/passives/masterysword.png"]= { ["x"]= 676, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/lightningint.png"]= { + ["Art/2DArt/SkillIcons/passives/masterywand.png"]= { ["x"]= 702, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/lightningstr.png"]= { + ["Art/2DArt/SkillIcons/passives/meleeattackspeed.png"]= { ["x"]= 728, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/macecritdmgspeed.png"]= { + ["Art/2DArt/SkillIcons/passives/minionattackspeed.png"]= { ["x"]= 754, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/macedmg.png"]= { + ["Art/2DArt/SkillIcons/passives/minionblockchance.png"]= { ["x"]= 780, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/mana.png"]= { + ["Art/2DArt/SkillIcons/passives/miniondamage.png"]= { ["x"]= 806, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/manaregeneration.png"]= { + ["Art/2DArt/SkillIcons/passives/miniondamageBlue.png"]= { ["x"]= 832, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/manareservationreduction.png"]= { + ["Art/2DArt/SkillIcons/passives/minionlife.png"]= { ["x"]= 858, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/manastr.png"]= { + ["Art/2DArt/SkillIcons/passives/onehanddamage.png"]= { ["x"]= 884, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/masterydaggerdex.png"]= { + ["Art/2DArt/SkillIcons/passives/onehandspeed.png"]= { ["x"]= 910, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/masterysword.png"]= { + ["Art/2DArt/SkillIcons/passives/plusdexterity.png"]= { ["x"]= 936, ["y"]= 260, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/masterywand.png"]= { + ["Art/2DArt/SkillIcons/passives/plusintelligence.png"]= { + ["x"]= 962, + ["y"]= 260, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/plusintelligencedexterity.png"]= { ["x"]= 0, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/meleeattackspeed.png"]= { + ["Art/2DArt/SkillIcons/passives/plusstrength.png"]= { ["x"]= 26, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/minionattackspeed.png"]= { + ["Art/2DArt/SkillIcons/passives/plusstrengthdexterity.png"]= { ["x"]= 52, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/minionblockchance.png"]= { + ["Art/2DArt/SkillIcons/passives/plusstrengthintelligence.png"]= { ["x"]= 78, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/miniondamage.png"]= { + ["Art/2DArt/SkillIcons/passives/projectilespeed.png"]= { ["x"]= 104, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/miniondamageBlue.png"]= { + ["Art/2DArt/SkillIcons/passives/shieldblock.png"]= { ["x"]= 130, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/minionlife.png"]= { + ["Art/2DArt/SkillIcons/passives/skillduration.png"]= { ["x"]= 156, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/onehanddamage.png"]= { + ["Art/2DArt/SkillIcons/passives/spellcritical.png"]= { ["x"]= 182, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/onehandspeed.png"]= { + ["Art/2DArt/SkillIcons/passives/staffaccuracy.png"]= { ["x"]= 208, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/plusdexterity.png"]= { + ["Art/2DArt/SkillIcons/passives/staffspeed.png"]= { ["x"]= 234, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/plusintelligence.png"]= { + ["Art/2DArt/SkillIcons/passives/stundex.png"]= { ["x"]= 260, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/plusintelligencedexterity.png"]= { + ["Art/2DArt/SkillIcons/passives/stunmace.png"]= { ["x"]= 286, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/plusstrength.png"]= { + ["Art/2DArt/SkillIcons/passives/stunstr.png"]= { ["x"]= 312, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/plusstrengthdexterity.png"]= { + ["Art/2DArt/SkillIcons/passives/tempdex.png"]= { ["x"]= 338, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/plusstrengthintelligence.png"]= { + ["Art/2DArt/SkillIcons/passives/tempint.png"]= { ["x"]= 364, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/projectilespeed.png"]= { + ["Art/2DArt/SkillIcons/passives/totemandbrandattackspeed.png"]= { ["x"]= 390, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/shieldblock.png"]= { + ["Art/2DArt/SkillIcons/passives/totemandbranddamage.png"]= { ["x"]= 416, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/skillduration.png"]= { + ["Art/2DArt/SkillIcons/passives/totemandbrandrange.png"]= { ["x"]= 442, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/spellcritical.png"]= { + ["Art/2DArt/SkillIcons/passives/totemattackspeed.png"]= { ["x"]= 468, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/staffaccuracy.png"]= { + ["Art/2DArt/SkillIcons/passives/totemlife.png"]= { ["x"]= 494, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/staffspeed.png"]= { + ["Art/2DArt/SkillIcons/passives/trapcriticalstrike.png"]= { ["x"]= 520, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/stundex.png"]= { + ["Art/2DArt/SkillIcons/passives/trapdamage.png"]= { ["x"]= 546, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/stunmace.png"]= { + ["Art/2DArt/SkillIcons/passives/trapsduration.png"]= { ["x"]= 572, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/stunstr.png"]= { + ["Art/2DArt/SkillIcons/passives/trapsradius.png"]= { ["x"]= 598, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/tempdex.png"]= { + ["Art/2DArt/SkillIcons/passives/trapsspeed.png"]= { ["x"]= 624, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/tempint.png"]= { + ["Art/2DArt/SkillIcons/passives/weaponelementaldamagepercentage.png"]= { ["x"]= 650, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/totemandbrandattackspeed.png"]= { + ["Art/2DArt/SkillIcons/ArohonguiTribeSkill.png"]= { ["x"]= 676, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/totemandbranddamage.png"]= { + ["Art/2DArt/SkillIcons/HinekoraTribeSkill.png"]= { ["x"]= 702, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/totemandbrandrange.png"]= { + ["Art/2DArt/SkillIcons/KitavaTribeSkill.png"]= { ["x"]= 728, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/totemattackspeed.png"]= { + ["Art/2DArt/SkillIcons/NgamahuTribeSkill.png"]= { ["x"]= 754, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/totemlife.png"]= { + ["Art/2DArt/SkillIcons/RamakoTribeSkill.png"]= { ["x"]= 780, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/trapcriticalstrike.png"]= { + ["Art/2DArt/SkillIcons/RongokuraiTribeSkill.png"]= { ["x"]= 806, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/trapdamage.png"]= { + ["Art/2DArt/SkillIcons/TasalioTribeSkill.png"]= { ["x"]= 832, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/trapsduration.png"]= { + ["Art/2DArt/SkillIcons/TawhoaTribeSkill.png"]= { ["x"]= 858, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/trapsradius.png"]= { + ["Art/2DArt/SkillIcons/TukohamaTribeSkill.png"]= { ["x"]= 884, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/trapsspeed.png"]= { + ["Art/2DArt/SkillIcons/ValakoTribeSkill.png"]= { ["x"]= 910, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/passives/weaponelementaldamagepercentage.png"]= { + ["Art/2DArt/SkillIcons/passives/HinekoraPassiveIcon1.png"]= { ["x"]= 936, ["y"]= 286, ["w"]= 26, ["h"]= 26 }, - ["Art/2DArt/SkillIcons/ArohonguiTribeSkill.png"]= { - ["x"]= 0, - ["y"]= 312, - ["w"]= 26, - ["h"]= 26 - }, - ["Art/2DArt/SkillIcons/HinekoraTribeSkill.png"]= { - ["x"]= 26, - ["y"]= 312, - ["w"]= 26, - ["h"]= 26 - }, - ["Art/2DArt/SkillIcons/KitavaTribeSkill.png"]= { - ["x"]= 52, - ["y"]= 312, - ["w"]= 26, - ["h"]= 26 - }, - ["Art/2DArt/SkillIcons/NgamahuTribeSkill.png"]= { - ["x"]= 78, - ["y"]= 312, - ["w"]= 26, - ["h"]= 26 - }, - ["Art/2DArt/SkillIcons/RamakoTribeSkill.png"]= { - ["x"]= 104, - ["y"]= 312, - ["w"]= 26, - ["h"]= 26 - }, - ["Art/2DArt/SkillIcons/RongokuraiTribeSkill.png"]= { - ["x"]= 130, - ["y"]= 312, - ["w"]= 26, - ["h"]= 26 - }, - ["Art/2DArt/SkillIcons/TasalioTribeSkill.png"]= { - ["x"]= 156, - ["y"]= 312, - ["w"]= 26, - ["h"]= 26 - }, - ["Art/2DArt/SkillIcons/TawhoaTribeSkill.png"]= { - ["x"]= 182, - ["y"]= 312, - ["w"]= 26, - ["h"]= 26 - }, - ["Art/2DArt/SkillIcons/TukohamaTribeSkill.png"]= { - ["x"]= 208, - ["y"]= 312, - ["w"]= 26, - ["h"]= 26 - }, - ["Art/2DArt/SkillIcons/ValakoTribeSkill.png"]= { - ["x"]= 234, - ["y"]= 312, - ["w"]= 26, - ["h"]= 26 - }, - ["Art/2DArt/SkillIcons/passives/HinekoraPassiveIcon1.png"]= { - ["x"]= 260, - ["y"]= 312, - ["w"]= 26, - ["h"]= 26 - }, ["Art/2DArt/SkillIcons/passives/HinekoraPassiveIcon2.png"]= { - ["x"]= 286, - ["y"]= 312, + ["x"]= 962, + ["y"]= 286, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/HinekoraPassiveIcon3.png"]= { - ["x"]= 312, + ["x"]= 0, ["y"]= 312, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/SkillscostingLifenode.png"]= { - ["x"]= 338, + ["x"]= 26, ["y"]= 312, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/accuracyint.png"]= { - ["x"]= 364, + ["x"]= 52, ["y"]= 312, ["w"]= 26, ["h"]= 26 }, ["Art/2DArt/SkillIcons/passives/totemandbrandlife.png"]= { - ["x"]= 390, + ["x"]= 78, ["y"]= 312, ["w"]= 26, ["h"]= 26 @@ -9944,8 +10070,8 @@ return { } }, ["notableInactive"]= { - ["filename"]= "https://web.poecdn.com/image/passive-skill/skills-disabled-3.jpg?ac7492dd", - ["w"]= 962, + ["filename"]= "https://web.poecdn.com/image/passive-skill/skills-disabled-3.jpg?94caf4e2", + ["w"]= 999, ["h"]= 1459, ["coords"]= { ["Art/2DArt/SkillIcons/passives/2handeddamage.png"]= { @@ -10105,3871 +10231,3997 @@ return { ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/Assassin/DeadlyInfusion.png"]= { + ["x"]= 962, + ["y"]= 338, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Assassin/Elusive.png"]= { ["x"]= 0, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Assassin/Elusive.png"]= { + ["Art/2DArt/SkillIcons/passives/Assassin/NoxiousStrike.png"]= { ["x"]= 37, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Assassin/NoxiousStrike.png"]= { + ["Art/2DArt/SkillIcons/passives/Assassin/ToxicDelivery.png"]= { ["x"]= 74, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Assassin/ToxicDelivery.png"]= { + ["Art/2DArt/SkillIcons/passives/Assassin/UnstableInfusion.png"]= { ["x"]= 111, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Assassin/UnstableInfusion.png"]= { + ["Art/2DArt/SkillIcons/passives/AssassinAnointNotable.png"]= { ["x"]= 148, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/AssassinAnointNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/AtlasTrees/AulBloodlineNotable.png"]= { ["x"]= 185, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/AtlasTrees/AulBloodlineNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/AtlasTrees/BestiaryNotable4.png"]= { ["x"]= 222, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/AtlasTrees/BestiaryNotable4.png"]= { + ["Art/2DArt/SkillIcons/passives/AtlasTrees/BloodLineOlrothNotable.png"]= { ["x"]= 259, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/AtlasTrees/BloodLineOlrothNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/AtlasTrees/BoldUndertaking.png"]= { ["x"]= 296, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/AtlasTrees/BoldUndertaking.png"]= { + ["Art/2DArt/SkillIcons/passives/AtlasTrees/BreachNotable4.png"]= { ["x"]= 333, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/AtlasTrees/BreachNotable4.png"]= { + ["Art/2DArt/SkillIcons/passives/AtlasTrees/DeliriumNotable1.png"]= { ["x"]= 370, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/AtlasTrees/DeliriumNotable1.png"]= { + ["Art/2DArt/SkillIcons/passives/AtlasTrees/FarrulNotable1.png"]= { ["x"]= 407, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/AtlasTrees/FarrulNotable1.png"]= { + ["Art/2DArt/SkillIcons/passives/AtlasTrees/HarbingerNode1.png"]= { ["x"]= 444, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/AtlasTrees/HarbingerNode1.png"]= { + ["Art/2DArt/SkillIcons/passives/AtlasTrees/LyciaNotable1.png"]= { ["x"]= 481, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/AtlasTrees/LyciaNotable1.png"]= { + ["Art/2DArt/SkillIcons/passives/AtlasTrees/MorePrimalWisps.png"]= { ["x"]= 518, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/AtlasTrees/MorePrimalWisps.png"]= { + ["Art/2DArt/SkillIcons/passives/AtlasTrees/MoreVividWisps.png"]= { ["x"]= 555, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/AtlasTrees/MoreVividWisps.png"]= { + ["Art/2DArt/SkillIcons/passives/AtlasTrees/MoreWildWisps.png"]= { ["x"]= 592, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/AtlasTrees/MoreWildWisps.png"]= { + ["Art/2DArt/SkillIcons/passives/AtlasTrees/TempestNotable1.png"]= { ["x"]= 629, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/AtlasTrees/TempestNotable1.png"]= { + ["Art/2DArt/SkillIcons/passives/AtlasTrees/UltimatumNotable3.png"]= { ["x"]= 666, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/AtlasTrees/UltimatumNotable3.png"]= { + ["Art/2DArt/SkillIcons/passives/AtlasTrees/UltimatumNotable4.png"]= { ["x"]= 703, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/AtlasTrees/UltimatumNotable4.png"]= { + ["Art/2DArt/SkillIcons/passives/AttackBlindNotable.png"]= { ["x"]= 740, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/AttackBlindNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/AttackDamangeAndEvasionNotableIcon.png"]= { ["x"]= 777, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/AttackDamangeAndEvasionNotableIcon.png"]= { + ["Art/2DArt/SkillIcons/passives/AttackPoisonNotable.png"]= { ["x"]= 814, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/AttackPoisonNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/AuraEffectNotable.png"]= { ["x"]= 851, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/AuraEffectNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/AuraReservationNotable.png"]= { ["x"]= 888, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/AuraReservationNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/AvataroftheHunt2.png"]= { ["x"]= 925, ["y"]= 375, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/AvataroftheHunt2.png"]= { + ["Art/2DArt/SkillIcons/passives/AvoidInterruptionFromCastingNotable.png"]= { + ["x"]= 962, + ["y"]= 375, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/AxeNotable1.png"]= { ["x"]= 0, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/AvoidInterruptionFromCastingNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/AxeNotable2.png"]= { ["x"]= 37, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/AxeNotable1.png"]= { + ["Art/2DArt/SkillIcons/passives/AxeandSwordDamage.png"]= { ["x"]= 74, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/AxeNotable2.png"]= { + ["Art/2DArt/SkillIcons/passives/AxesandAttackSpeed.png"]= { ["x"]= 111, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/AxeandSwordDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/BannerAreaNotable.png"]= { ["x"]= 148, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/AxesandAttackSpeed.png"]= { + ["Art/2DArt/SkillIcons/passives/BannerDurationNotable.png"]= { ["x"]= 185, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/BannerAreaNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/BannerEffectNotable.png"]= { ["x"]= 222, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/BannerDurationNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/BannerResourceAreaNotable.png"]= { ["x"]= 259, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/BannerEffectNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/BannersNotable.png"]= { ["x"]= 296, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/BannerResourceAreaNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/BarragingProjectilesNotable.png"]= { ["x"]= 333, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/BannersNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/BattleRouse.png"]= { ["x"]= 370, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/BarragingProjectilesNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Berserker/AspectOfCarnage.png"]= { ["x"]= 407, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/BattleRouse.png"]= { + ["Art/2DArt/SkillIcons/passives/Berserker/Blitz.png"]= { ["x"]= 444, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Berserker/AspectOfCarnage.png"]= { + ["Art/2DArt/SkillIcons/passives/Berserker/CloakedAgony.png"]= { ["x"]= 481, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Berserker/Blitz.png"]= { + ["Art/2DArt/SkillIcons/passives/Berserker/CombatFrenzy.png"]= { ["x"]= 518, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Berserker/CloakedAgony.png"]= { + ["Art/2DArt/SkillIcons/passives/Berserker/DefyPain.png"]= { ["x"]= 555, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Berserker/CombatFrenzy.png"]= { + ["Art/2DArt/SkillIcons/passives/Berserker/RiteOfRuin.png"]= { ["x"]= 592, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Berserker/DefyPain.png"]= { + ["Art/2DArt/SkillIcons/passives/Berserker/WarBringer.png"]= { ["x"]= 629, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Berserker/RiteOfRuin.png"]= { + ["Art/2DArt/SkillIcons/passives/BeserkerAnointNotable.png"]= { ["x"]= 666, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Berserker/WarBringer.png"]= { + ["Art/2DArt/SkillIcons/passives/BladeBarrierNotable.png"]= { ["x"]= 703, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/BeserkerAnointNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/BleedPoison.png"]= { ["x"]= 740, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/BladeBarrierNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/BleedPoisonMitigateNotable.png"]= { ["x"]= 777, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/BleedPoison.png"]= { + ["Art/2DArt/SkillIcons/passives/BleedingNotable1.png"]= { ["x"]= 814, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/BleedPoisonMitigateNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/BleedingNotable2.png"]= { ["x"]= 851, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/BleedingNotable1.png"]= { + ["Art/2DArt/SkillIcons/passives/BlockAttackDmgNotable.png"]= { ["x"]= 888, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/BleedingNotable2.png"]= { + ["Art/2DArt/SkillIcons/passives/BlockSpellDmgNotable.png"]= { ["x"]= 925, ["y"]= 412, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/BlockAttackDmgNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Blood2.png"]= { + ["x"]= 962, + ["y"]= 412, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/BloodPact.png"]= { ["x"]= 0, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/BlockSpellDmgNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/BloodSiphon.png"]= { ["x"]= 37, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Blood2.png"]= { + ["Art/2DArt/SkillIcons/passives/BloodyBludgeon.png"]= { ["x"]= 74, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/BloodPact.png"]= { + ["Art/2DArt/SkillIcons/passives/Boomerang.png"]= { ["x"]= 111, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/BloodSiphon.png"]= { + ["Art/2DArt/SkillIcons/passives/BowDamage.png"]= { ["x"]= 148, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/BloodyBludgeon.png"]= { + ["Art/2DArt/SkillIcons/passives/Brand2.png"]= { ["x"]= 185, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Boomerang.png"]= { + ["Art/2DArt/SkillIcons/passives/Brand4.png"]= { ["x"]= 222, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/BowDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/BrandDmgNotable.png"]= { ["x"]= 259, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Brand2.png"]= { + ["Art/2DArt/SkillIcons/passives/BreathofFlames2.png"]= { ["x"]= 296, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Brand4.png"]= { + ["Art/2DArt/SkillIcons/passives/BreathofLightening2.png"]= { ["x"]= 333, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/BrandDmgNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/BreathofRime2.png"]= { ["x"]= 370, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/BreathofFlames2.png"]= { + ["Art/2DArt/SkillIcons/passives/ByTheBlade.png"]= { ["x"]= 407, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/BreathofLightening2.png"]= { + ["Art/2DArt/SkillIcons/passives/CelestialPunishment.png"]= { ["x"]= 444, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/BreathofRime2.png"]= { + ["Art/2DArt/SkillIcons/passives/ChainingProjectiles.png"]= { ["x"]= 481, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ByTheBlade.png"]= { + ["Art/2DArt/SkillIcons/passives/Champion.png"]= { ["x"]= 518, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/CelestialPunishment.png"]= { + ["Art/2DArt/SkillIcons/passives/Champion/FirstStrikeLastFall.png"]= { ["x"]= 555, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ChainingProjectiles.png"]= { + ["Art/2DArt/SkillIcons/passives/Champion/Fortitude.png"]= { ["x"]= 592, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Champion.png"]= { + ["Art/2DArt/SkillIcons/passives/Champion/ImpalePassiveNotable.png"]= { ["x"]= 629, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Champion/FirstStrikeLastFall.png"]= { + ["Art/2DArt/SkillIcons/passives/Champion/Inpirational.png"]= { ["x"]= 666, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Champion/Fortitude.png"]= { + ["Art/2DArt/SkillIcons/passives/Champion/Unstopable.png"]= { ["x"]= 703, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Champion/ImpalePassiveNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Champion/WorthyCauses.png"]= { ["x"]= 740, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Champion/Inpirational.png"]= { + ["Art/2DArt/SkillIcons/passives/Champion/WorthyFoe.png"]= { ["x"]= 777, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Champion/Unstopable.png"]= { + ["Art/2DArt/SkillIcons/passives/ChampionAnointNotable.png"]= { ["x"]= 814, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Champion/WorthyCauses.png"]= { + ["Art/2DArt/SkillIcons/passives/ChaosDamage2.png"]= { ["x"]= 851, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Champion/WorthyFoe.png"]= { + ["Art/2DArt/SkillIcons/passives/ChaosDamageOverTimeNotable.png"]= { ["x"]= 888, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ChampionAnointNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/ChaosDamageOverTimeNotable2.png"]= { ["x"]= 925, ["y"]= 449, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ChaosDamage2.png"]= { + ["Art/2DArt/SkillIcons/passives/ChaosResistNotable.png"]= { + ["x"]= 962, + ["y"]= 449, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ChaoticPotential.png"]= { ["x"]= 0, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ChaosDamageOverTimeNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/CheiftainAnointNotable.png"]= { ["x"]= 37, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ChaosDamageOverTimeNotable2.png"]= { + ["Art/2DArt/SkillIcons/passives/Chieftain/ArohunguiMoonsPresenceWarcry.png"]= { ["x"]= 74, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ChaosResistNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Chieftain/HinekoraDeathsFury.png"]= { ["x"]= 111, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ChaoticPotential.png"]= { + ["Art/2DArt/SkillIcons/passives/Chieftain/NgamahuFlamesAdvance.png"]= { ["x"]= 148, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/CheiftainAnointNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Chieftain/RamakoSunsLight.png"]= { ["x"]= 185, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Chieftain/ArohunguiMoonsPresenceWarcry.png"]= { + ["Art/2DArt/SkillIcons/passives/Chieftain/TasalioCleansingWater.png"]= { ["x"]= 222, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Chieftain/HinekoraDeathsFury.png"]= { + ["Art/2DArt/SkillIcons/passives/Chieftain/TukomahaWarsHerald.png"]= { ["x"]= 259, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Chieftain/NgamahuFlamesAdvance.png"]= { + ["Art/2DArt/SkillIcons/passives/Chieftain/ValakoStormsEmbrace.png"]= { ["x"]= 296, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Chieftain/RamakoSunsLight.png"]= { + ["Art/2DArt/SkillIcons/passives/ChillThemedNotable.png"]= { ["x"]= 333, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Chieftain/TasalioCleansingWater.png"]= { + ["Art/2DArt/SkillIcons/passives/ClawNotable1.png"]= { ["x"]= 370, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Chieftain/TukomahaWarsHerald.png"]= { + ["Art/2DArt/SkillIcons/passives/ClawNotable2.png"]= { ["x"]= 407, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Chieftain/ValakoStormsEmbrace.png"]= { + ["Art/2DArt/SkillIcons/passives/ClawsOfTheMagpie.png"]= { ["x"]= 444, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ChillThemedNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/CleverThief.png"]= { ["x"]= 481, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ClawNotable1.png"]= { + ["Art/2DArt/SkillIcons/passives/ColdAndFireHybridNotable.png"]= { ["x"]= 518, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ClawNotable2.png"]= { + ["Art/2DArt/SkillIcons/passives/ColdDamageEnemyNotable.png"]= { ["x"]= 555, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ClawsOfTheMagpie.png"]= { + ["Art/2DArt/SkillIcons/passives/ColdDamageOverTimeNotable.png"]= { ["x"]= 592, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/CleverThief.png"]= { + ["Art/2DArt/SkillIcons/passives/ColdResistNotable.png"]= { ["x"]= 629, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ColdAndFireHybridNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/ColdWeaponDmg.png"]= { ["x"]= 666, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ColdDamageEnemyNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/ColdheartedCalculation2.png"]= { ["x"]= 703, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ColdDamageOverTimeNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/CombatFocusNotable.png"]= { ["x"]= 740, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ColdResistNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/CombatStamina.png"]= { ["x"]= 777, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ColdWeaponDmg.png"]= { + ["Art/2DArt/SkillIcons/passives/CommandofSteel.png"]= { ["x"]= 814, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ColdheartedCalculation2.png"]= { + ["Art/2DArt/SkillIcons/passives/Constitution.png"]= { ["x"]= 851, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/CombatFocusNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Coordination.png"]= { ["x"]= 888, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/CombatStamina.png"]= { + ["Art/2DArt/SkillIcons/passives/CorpsesNotable.png"]= { ["x"]= 925, ["y"]= 486, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/CommandofSteel.png"]= { + ["Art/2DArt/SkillIcons/passives/Corruption.png"]= { + ["x"]= 962, + ["y"]= 486, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/CritStrikeBleedingNotable.png"]= { ["x"]= 0, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Constitution.png"]= { + ["Art/2DArt/SkillIcons/passives/CurseAreaOfEffectNotable.png"]= { ["x"]= 37, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Coordination.png"]= { + ["Art/2DArt/SkillIcons/passives/CurseEffectNotable.png"]= { ["x"]= 74, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/CorpsesNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/CurseNotable.png"]= { ["x"]= 111, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Corruption.png"]= { + ["Art/2DArt/SkillIcons/passives/CurseNotable2.png"]= { ["x"]= 148, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/CritStrikeBleedingNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/CursemitigationclusterNotable.png"]= { ["x"]= 185, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/CurseAreaOfEffectNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/DaggerNotable1.png"]= { ["x"]= 222, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/CurseEffectNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/DaggerandClawDamage.png"]= { ["x"]= 259, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/CurseNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/DamageOverTimeNotable.png"]= { ["x"]= 296, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/CurseNotable2.png"]= { + ["Art/2DArt/SkillIcons/passives/DamageofMinionsNotable.png"]= { ["x"]= 333, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/CursemitigationclusterNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/DarkestHour.png"]= { ["x"]= 370, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DaggerNotable1.png"]= { + ["Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeFrenzyChargeNotable.png"]= { ["x"]= 407, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DaggerandClawDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/DeadEye/FarShot.png"]= { ["x"]= 444, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DamageOverTimeNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/DeadEye/GatherWinds.png"]= { ["x"]= 481, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DamageofMinionsNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/DeadEye/Ricochet.png"]= { ["x"]= 518, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DarkestHour.png"]= { + ["Art/2DArt/SkillIcons/passives/DeadeyeAnointNotable.png"]= { ["x"]= 555, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeFrenzyChargeNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/DeepBreathsNotable.png"]= { ["x"]= 592, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DeadEye/FarShot.png"]= { + ["Art/2DArt/SkillIcons/passives/DiamondSkin2.png"]= { ["x"]= 629, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DeadEye/GatherWinds.png"]= { + ["Art/2DArt/SkillIcons/passives/DireTorment.png"]= { ["x"]= 666, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DeadEye/Ricochet.png"]= { + ["Art/2DArt/SkillIcons/passives/DivineFury.png"]= { ["x"]= 703, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DeadeyeAnointNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/DivineWrath.png"]= { ["x"]= 740, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DeepBreathsNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/DmgHeraldSkillsNotable.png"]= { ["x"]= 777, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DiamondSkin2.png"]= { + ["Art/2DArt/SkillIcons/passives/DmgWhenChannelSkillsNotable.png"]= { ["x"]= 814, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DireTorment.png"]= { + ["Art/2DArt/SkillIcons/passives/DodgeAtksNotable.png"]= { ["x"]= 851, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DivineFury.png"]= { + ["Art/2DArt/SkillIcons/passives/Dreamer.png"]= { ["x"]= 888, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DivineWrath.png"]= { + ["Art/2DArt/SkillIcons/passives/DruidicRite.png"]= { ["x"]= 925, ["y"]= 523, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DmgHeraldSkillsNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/DualWieldNotable.png"]= { + ["x"]= 962, + ["y"]= 523, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/DualWieldingBlockNotable.png"]= { ["x"]= 0, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DmgWhenChannelSkillsNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/DualWieldingDamage.png"]= { ["x"]= 37, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DodgeAtksNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/DurationofMinionsNotable.png"]= { ["x"]= 74, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Dreamer.png"]= { + ["Art/2DArt/SkillIcons/passives/ElementalAilmentResistance.png"]= { ["x"]= 111, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DruidicRite.png"]= { + ["Art/2DArt/SkillIcons/passives/ElementalDamagewithAttacks2.png"]= { ["x"]= 148, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DualWieldNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/ElementalDominion2.png"]= { ["x"]= 185, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DualWieldingBlockNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/ElementalFocus.png"]= { ["x"]= 222, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DualWieldingDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/Elementalist/ChillSpecialisation.png"]= { ["x"]= 259, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/DurationofMinionsNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Elementalist/ElemancerIcon.png"]= { ["x"]= 296, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ElementalAilmentResistance.png"]= { + ["Art/2DArt/SkillIcons/passives/Elementalist/IgniteSpecialisation.png"]= { ["x"]= 333, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ElementalDamagewithAttacks2.png"]= { + ["Art/2DArt/SkillIcons/passives/Elementalist/IridescentFlesh.png"]= { ["x"]= 370, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ElementalDominion2.png"]= { + ["Art/2DArt/SkillIcons/passives/Elementalist/LiegeOfThePrimordial.png"]= { ["x"]= 407, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ElementalFocus.png"]= { + ["Art/2DArt/SkillIcons/passives/Elementalist/PendulumOfDestruction.png"]= { ["x"]= 444, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Elementalist/ChillSpecialisation.png"]= { + ["Art/2DArt/SkillIcons/passives/Elementalist/PrimevalForce.png"]= { ["x"]= 481, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Elementalist/ElemancerIcon.png"]= { + ["Art/2DArt/SkillIcons/passives/Elementalist/ShockSpecialisation.png"]= { ["x"]= 518, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Elementalist/IgniteSpecialisation.png"]= { + ["Art/2DArt/SkillIcons/passives/ElementalistAnointNotable.png"]= { ["x"]= 555, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Elementalist/IridescentFlesh.png"]= { + ["Art/2DArt/SkillIcons/passives/EnduranceChargeNotable.png"]= { ["x"]= 592, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Elementalist/LiegeOfThePrimordial.png"]= { + ["Art/2DArt/SkillIcons/passives/EnergyShieldNotable.png"]= { ["x"]= 629, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Elementalist/PendulumOfDestruction.png"]= { + ["Art/2DArt/SkillIcons/passives/Entropy.png"]= { ["x"]= 666, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Elementalist/PrimevalForce.png"]= { + ["Art/2DArt/SkillIcons/passives/EscalationNotable.png"]= { ["x"]= 703, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Elementalist/ShockSpecialisation.png"]= { + ["Art/2DArt/SkillIcons/passives/EssenceSurge.png"]= { ["x"]= 740, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ElementalistAnointNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/EvasionAndBlindNotable.png"]= { ["x"]= 777, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/EnduranceChargeNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/EvasionAndPhasingNotable.png"]= { ["x"]= 814, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/EnergyShieldNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/EvasionNotable.png"]= { ["x"]= 851, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Entropy.png"]= { + ["Art/2DArt/SkillIcons/passives/ExceptionalPerformance.png"]= { ["x"]= 888, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/EscalationNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/ExplosiveRunes.png"]= { ["x"]= 925, ["y"]= 560, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/EssenceSurge.png"]= { + ["Art/2DArt/SkillIcons/passives/EyesOfTheDeadly.png"]= { + ["x"]= 962, + ["y"]= 560, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/EyesOfThePowerful.png"]= { ["x"]= 0, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/EvasionAndBlindNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/EyesOfTheSavant.png"]= { ["x"]= 37, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/EvasionAndPhasingNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/FasterBleeding2.png"]= { ["x"]= 74, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/EvasionNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/FatalBlade.png"]= { ["x"]= 111, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ExceptionalPerformance.png"]= { + ["Art/2DArt/SkillIcons/passives/FireAilment.png"]= { ["x"]= 148, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ExplosiveRunes.png"]= { + ["Art/2DArt/SkillIcons/passives/FireDamageOverTimeNotable.png"]= { ["x"]= 185, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/EyesOfTheDeadly.png"]= { + ["Art/2DArt/SkillIcons/passives/FireResistNotable.png"]= { ["x"]= 222, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/EyesOfThePowerful.png"]= { + ["Art/2DArt/SkillIcons/passives/FlaskDuration.png"]= { ["x"]= 259, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/EyesOfTheSavant.png"]= { + ["Art/2DArt/SkillIcons/passives/FlaskNotableCritStrikeRecharge.png"]= { ["x"]= 296, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/FasterBleeding2.png"]= { + ["Art/2DArt/SkillIcons/passives/FlaskNotableFlasksLastLonger.png"]= { ["x"]= 333, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/FatalBlade.png"]= { + ["Art/2DArt/SkillIcons/passives/ForceOfNature.png"]= { ["x"]= 370, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/FireAilment.png"]= { + ["Art/2DArt/SkillIcons/passives/ForkingProjectilesNotable.png"]= { ["x"]= 407, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/FireDamageOverTimeNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/FortifyNotable1.png"]= { ["x"]= 444, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/FireResistNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/FortifyNotable2.png"]= { ["x"]= 481, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/FlaskDuration.png"]= { + ["Art/2DArt/SkillIcons/passives/FrenzyChargeNotable.png"]= { ["x"]= 518, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/FlaskNotableCritStrikeRecharge.png"]= { + ["Art/2DArt/SkillIcons/passives/GenericBlockNotable1.png"]= { ["x"]= 555, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/FlaskNotableFlasksLastLonger.png"]= { + ["Art/2DArt/SkillIcons/passives/GenericBlockNotable2.png"]= { ["x"]= 592, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ForceOfNature.png"]= { + ["Art/2DArt/SkillIcons/passives/GenericSpellBlockNotable.png"]= { ["x"]= 629, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ForkingProjectilesNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Gladiator/GLADBloodAndSand.png"]= { ["x"]= 666, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/FortifyNotable1.png"]= { + ["Art/2DArt/SkillIcons/passives/Gladiator/GLADBloodInEyes.png"]= { ["x"]= 703, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/FortifyNotable2.png"]= { + ["Art/2DArt/SkillIcons/passives/Gladiator/GLADPainForged.png"]= { ["x"]= 740, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/FrenzyChargeNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Gladiator/GLADVersitileCombatant.png"]= { ["x"]= 777, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/GenericBlockNotable1.png"]= { + ["Art/2DArt/SkillIcons/passives/Gladiator/GLADViolence.png"]= { ["x"]= 814, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/GenericBlockNotable2.png"]= { + ["Art/2DArt/SkillIcons/passives/Gladiator/GLADViolentRetaliation.png"]= { ["x"]= 851, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/GenericSpellBlockNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Gladiator/GladiatorDualWiledSwordAxeNotable.png"]= { ["x"]= 888, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Gladiator/GLADBloodAndSand.png"]= { + ["Art/2DArt/SkillIcons/passives/GladiatorAnointNotable.png"]= { ["x"]= 925, ["y"]= 597, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Gladiator/GLADBloodInEyes.png"]= { + ["Art/2DArt/SkillIcons/passives/GolemsNotable.png"]= { + ["x"]= 962, + ["y"]= 597, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/GreenProjectileAttackNotable.png"]= { ["x"]= 0, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Gladiator/GLADPainForged.png"]= { + ["Art/2DArt/SkillIcons/passives/GrowthandDecay.png"]= { ["x"]= 37, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Gladiator/GLADVersitileCombatant.png"]= { + ["Art/2DArt/SkillIcons/passives/Guardian/GuardianHallowingFlameNotable.png"]= { ["x"]= 74, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Gladiator/GLADViolence.png"]= { + ["Art/2DArt/SkillIcons/passives/Guardian/HarmonyOfPurpose.png"]= { ["x"]= 111, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Gladiator/GLADViolentRetaliation.png"]= { + ["Art/2DArt/SkillIcons/passives/Guardian/Radient Crusade.png"]= { ["x"]= 148, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Gladiator/GladiatorDualWiledSwordAxeNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Guardian/RadientFaith.png"]= { ["x"]= 185, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/GladiatorAnointNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Guardian/ShieldMastery.png"]= { ["x"]= 222, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/GolemsNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Guardian/TimeOfNeed.png"]= { ["x"]= 259, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/GreenProjectileAttackNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Guardian/Unwavering Crusade.png"]= { ["x"]= 296, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/GrowthandDecay.png"]= { + ["Art/2DArt/SkillIcons/passives/Guardian/UnwaveringFaith.png"]= { ["x"]= 333, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Guardian/GuardianHallowingFlameNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/GuardianAnointNotable.png"]= { ["x"]= 370, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Guardian/HarmonyOfPurpose.png"]= { + ["Art/2DArt/SkillIcons/passives/Harrier.png"]= { ["x"]= 407, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Guardian/Radient Crusade.png"]= { + ["Art/2DArt/SkillIcons/passives/HeartandSoul.png"]= { ["x"]= 444, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Guardian/RadientFaith.png"]= { + ["Art/2DArt/SkillIcons/passives/HeartofChaos.png"]= { ["x"]= 481, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Guardian/ShieldMastery.png"]= { + ["Art/2DArt/SkillIcons/passives/HeartoftheOak.png"]= { ["x"]= 518, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Guardian/TimeOfNeed.png"]= { + ["Art/2DArt/SkillIcons/passives/Hearty.png"]= { ["x"]= 555, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Guardian/Unwavering Crusade.png"]= { + ["Art/2DArt/SkillIcons/passives/HeirophantAnointNotable.png"]= { ["x"]= 592, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Guardian/UnwaveringFaith.png"]= { + ["Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.png"]= { ["x"]= 629, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/GuardianAnointNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/HeraldDamageNotable.png"]= { ["x"]= 666, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Harrier.png"]= { + ["Art/2DArt/SkillIcons/passives/HeraldReservation.png"]= { ["x"]= 703, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/HeartandSoul.png"]= { + ["Art/2DArt/SkillIcons/passives/Hierophant/AncestralZeal.png"]= { ["x"]= 740, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/HeartofChaos.png"]= { + ["Art/2DArt/SkillIcons/passives/Hierophant/ArcaneSurge.png"]= { ["x"]= 777, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/HeartoftheOak.png"]= { + ["Art/2DArt/SkillIcons/passives/Hierophant/DiscipleOfRuin.png"]= { ["x"]= 814, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Hearty.png"]= { + ["Art/2DArt/SkillIcons/passives/Hierophant/ItemAugment.png"]= { ["x"]= 851, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/HeirophantAnointNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Hierophant/MindOverBeing.png"]= { ["x"]= 888, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.png"]= { + ["Art/2DArt/SkillIcons/passives/Hierophant/MindOverBody.png"]= { ["x"]= 925, ["y"]= 634, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/HeraldDamageNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Hierophant/SignOfPurpose.png"]= { + ["x"]= 962, + ["y"]= 634, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Hierophant/SpiritualEmpowerment.png"]= { ["x"]= 0, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/HeraldReservation.png"]= { + ["Art/2DArt/SkillIcons/passives/HiredKiller2.png"]= { ["x"]= 37, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Hierophant/AncestralZeal.png"]= { + ["Art/2DArt/SkillIcons/passives/HoldingShieldDamage.png"]= { ["x"]= 74, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Hierophant/ArcaneSurge.png"]= { + ["Art/2DArt/SkillIcons/passives/Hunter.png"]= { ["x"]= 111, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Hierophant/DiscipleOfRuin.png"]= { + ["Art/2DArt/SkillIcons/passives/IgniteAshNotable.png"]= { ["x"]= 148, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Hierophant/ItemAugment.png"]= { + ["Art/2DArt/SkillIcons/passives/IgniteAttackNotable.png"]= { ["x"]= 185, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Hierophant/MindOverBeing.png"]= { + ["Art/2DArt/SkillIcons/passives/IgniteBleedNotable.png"]= { ["x"]= 222, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Hierophant/MindOverBody.png"]= { + ["Art/2DArt/SkillIcons/passives/IgniteStunNotable.png"]= { ["x"]= 259, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Hierophant/SignOfPurpose.png"]= { + ["Art/2DArt/SkillIcons/passives/IgnorePain.png"]= { ["x"]= 296, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Hierophant/SpiritualEmpowerment.png"]= { + ["Art/2DArt/SkillIcons/passives/Impale1HandNotable.png"]= { ["x"]= 333, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/HiredKiller2.png"]= { + ["Art/2DArt/SkillIcons/passives/ImpaleEffectNotable.png"]= { ["x"]= 370, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/HoldingShieldDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/ImpaleNotable1.png"]= { ["x"]= 407, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Hunter.png"]= { + ["Art/2DArt/SkillIcons/passives/ImpaleNotable2.png"]= { ["x"]= 444, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/IgniteAshNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreaseCritChanceNotable.png"]= { ["x"]= 481, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/IgniteAttackNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreaseMinionLifeNotable.png"]= { ["x"]= 518, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/IgniteBleedNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreasedAttackDamageNotable.png"]= { ["x"]= 555, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/IgniteStunNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreasedChaosDamage.png"]= { ["x"]= 592, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/IgnorePain.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreasedColdDamage.png"]= { ["x"]= 629, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Impale1HandNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreasedElementalDamage.png"]= { ["x"]= 666, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ImpaleEffectNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreasedFireDamage.png"]= { ["x"]= 703, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ImpaleNotable1.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreasedLightningDamage.png"]= { ["x"]= 740, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ImpaleNotable2.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreasedManaCostNotable.png"]= { ["x"]= 777, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/IncreaseCritChanceNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreasedMaximumLifeNotable.png"]= { ["x"]= 814, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/IncreaseMinionLifeNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreasedMinionDamageNotable.png"]= { ["x"]= 851, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/IncreasedAttackDamageNotable.png"]= { - ["x"]= 888, + ["Art/2DArt/SkillIcons/passives/IncreasedNonDamageAilmentNotable.png"]= { + ["x"]= 888, + ["y"]= 671, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.png"]= { + ["x"]= 925, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/IncreasedChaosDamage.png"]= { - ["x"]= 925, + ["Art/2DArt/SkillIcons/passives/IncreasedSpellDamageNode.png"]= { + ["x"]= 962, ["y"]= 671, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/IncreasedColdDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreasedSpellDamageNotable.png"]= { ["x"]= 0, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/IncreasedElementalDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/IncreasedWarcryNotable.png"]= { ["x"]= 37, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/IncreasedFireDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/InfusedFlesh.png"]= { ["x"]= 74, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/IncreasedLightningDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/InquisitorAnointNotable.png"]= { ["x"]= 111, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/IncreasedManaCostNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Inquistitor/ElementalDomination.png"]= { ["x"]= 148, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/IncreasedMaximumLifeNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Inquistitor/ElementalForce.png"]= { ["x"]= 185, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/IncreasedMinionDamageNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Inquistitor/ElementalMastery.png"]= { ["x"]= 222, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/IncreasedNonDamageAilmentNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Inquistitor/GloryOfTheSavant.png"]= { ["x"]= 259, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/Inquistitor/InstrumentsOfVirtue.png"]= { ["x"]= 296, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/IncreasedSpellDamageNode.png"]= { + ["Art/2DArt/SkillIcons/passives/Inquistitor/InstrumentsofZeal.png"]= { ["x"]= 333, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/IncreasedSpellDamageNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Inquistitor/Sanctify.png"]= { ["x"]= 370, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/IncreasedWarcryNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Inspiration.png"]= { ["x"]= 407, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/InfusedFlesh.png"]= { + ["Art/2DArt/SkillIcons/passives/IntensifyNotable.png"]= { ["x"]= 444, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/InquisitorAnointNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Juggernaut/JuggernautArmourNotable.png"]= { ["x"]= 481, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Inquistitor/ElementalDomination.png"]= { + ["Art/2DArt/SkillIcons/passives/Juggernaut/Unbreakable.png"]= { ["x"]= 518, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Inquistitor/ElementalForce.png"]= { + ["Art/2DArt/SkillIcons/passives/Juggernaut/Undeniable.png"]= { ["x"]= 555, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Inquistitor/ElementalMastery.png"]= { + ["Art/2DArt/SkillIcons/passives/Juggernaut/Unflinching.png"]= { ["x"]= 592, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Inquistitor/GloryOfTheSavant.png"]= { + ["Art/2DArt/SkillIcons/passives/Juggernaut/Unrelenting.png"]= { ["x"]= 629, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Inquistitor/InstrumentsOfVirtue.png"]= { + ["Art/2DArt/SkillIcons/passives/Juggernaut/Unstoppable.png"]= { ["x"]= 666, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Inquistitor/InstrumentsofZeal.png"]= { + ["Art/2DArt/SkillIcons/passives/Juggernaut/Unyielding.png"]= { ["x"]= 703, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Inquistitor/Sanctify.png"]= { + ["Art/2DArt/SkillIcons/passives/JuggernautAnointNotable.png"]= { ["x"]= 740, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Inspiration.png"]= { + ["Art/2DArt/SkillIcons/passives/KeystoneArmourMaster.png"]= { ["x"]= 777, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/IntensifyNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/KeystoneWhispersOfDoom.png"]= { ["x"]= 814, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Juggernaut/JuggernautArmourNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/LifeArmourAndEvasion.png"]= { ["x"]= 851, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Juggernaut/Unbreakable.png"]= { + ["Art/2DArt/SkillIcons/passives/LifeFlasks.png"]= { ["x"]= 888, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Juggernaut/Undeniable.png"]= { + ["Art/2DArt/SkillIcons/passives/LifeGainOnHitNotable.png"]= { ["x"]= 925, ["y"]= 708, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Juggernaut/Unflinching.png"]= { + ["Art/2DArt/SkillIcons/passives/LifeManaFlasksrecovery.png"]= { + ["x"]= 962, + ["y"]= 708, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/LifeRecoupNotable.png"]= { ["x"]= 0, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Juggernaut/Unrelenting.png"]= { + ["Art/2DArt/SkillIcons/passives/LifeRegenerationGainRegenNotable.png"]= { ["x"]= 37, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Juggernaut/Unstoppable.png"]= { + ["Art/2DArt/SkillIcons/passives/LifeRegenerationLowlifeBonusNotable.png"]= { ["x"]= 74, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Juggernaut/Unyielding.png"]= { + ["Art/2DArt/SkillIcons/passives/LifeandCursesN.png"]= { ["x"]= 111, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/JuggernautAnointNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/LifeandManaFlasks.png"]= { ["x"]= 148, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/KeystoneWhispersOfDoom.png"]= { + ["Art/2DArt/SkillIcons/passives/LifeandResistancesofMinions.png"]= { ["x"]= 185, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/LifeArmourAndEvasion.png"]= { + ["Art/2DArt/SkillIcons/passives/LightOfDivinity.png"]= { ["x"]= 222, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/LifeFlasks.png"]= { + ["Art/2DArt/SkillIcons/passives/LightningResistNotable.png"]= { ["x"]= 259, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/LifeGainOnHitNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/LinkNotable3.png"]= { ["x"]= 296, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/LifeManaFlasksrecovery.png"]= { + ["Art/2DArt/SkillIcons/passives/LinkNotable4.png"]= { ["x"]= 333, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/LifeRecoupNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/LustforCarnage.png"]= { ["x"]= 370, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/LifeRegenerationGainRegenNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/MaceNotable1.png"]= { ["x"]= 407, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/LifeRegenerationLowlifeBonusNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/MaceNotable2.png"]= { ["x"]= 444, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/LifeandCursesN.png"]= { + ["Art/2DArt/SkillIcons/passives/MaceandStaffDamage.png"]= { ["x"]= 481, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/LifeandManaFlasks.png"]= { + ["Art/2DArt/SkillIcons/passives/ManaDamageKeystone.png"]= { ["x"]= 518, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/LifeandResistancesofMinions.png"]= { + ["Art/2DArt/SkillIcons/passives/ManaFlasksOften.png"]= { ["x"]= 555, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/LightOfDivinity.png"]= { + ["Art/2DArt/SkillIcons/passives/ManaGuardNotable.png"]= { ["x"]= 592, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/LightningResistNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/ManaNotable.png"]= { ["x"]= 629, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/LinkNotable3.png"]= { + ["Art/2DArt/SkillIcons/passives/ManaandArcaneSurge.png"]= { ["x"]= 666, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/LinkNotable4.png"]= { + ["Art/2DArt/SkillIcons/passives/ManaandSpellBlock.png"]= { ["x"]= 703, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/LustforCarnage.png"]= { + ["Art/2DArt/SkillIcons/passives/ManaandSpellDamage.png"]= { ["x"]= 740, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MaceNotable1.png"]= { + ["Art/2DArt/SkillIcons/passives/Mark.png"]= { ["x"]= 777, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MaceNotable2.png"]= { + ["Art/2DArt/SkillIcons/passives/MarkNotable1.png"]= { ["x"]= 814, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MaceandStaffDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/MarkNotable2.png"]= { ["x"]= 851, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ManaDamageKeystone.png"]= { + ["Art/2DArt/SkillIcons/passives/MarkNotableIncreasedEffect.png"]= { ["x"]= 888, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ManaFlasksOften.png"]= { + ["Art/2DArt/SkillIcons/passives/MarkNotableMarkSpellRecently.png"]= { ["x"]= 925, ["y"]= 745, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ManaGuardNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/MartialExperience.png"]= { + ["x"]= 962, + ["y"]= 745, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/MasterofForce.png"]= { ["x"]= 0, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ManaNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/MaxElementalResistNotable.png"]= { ["x"]= 37, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ManaandArcaneSurge.png"]= { + ["Art/2DArt/SkillIcons/passives/MaxManaNotable.png"]= { ["x"]= 74, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ManaandSpellBlock.png"]= { + ["Art/2DArt/SkillIcons/passives/MaximumElementalResistances2.png"]= { ["x"]= 111, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ManaandSpellDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/MeasuredFuryNotable.png"]= { ["x"]= 148, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Mark.png"]= { + ["Art/2DArt/SkillIcons/passives/MeleeAoENode.png"]= { ["x"]= 185, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MarkNotable1.png"]= { + ["Art/2DArt/SkillIcons/passives/MeleeAoENotable.png"]= { ["x"]= 222, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MarkNotable2.png"]= { + ["Art/2DArt/SkillIcons/passives/MeleeCriticalStrikesNotable.png"]= { ["x"]= 259, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MarkNotableIncreasedEffect.png"]= { + ["Art/2DArt/SkillIcons/passives/MeleeFireNotable.png"]= { ["x"]= 296, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MarkNotableMarkSpellRecently.png"]= { + ["Art/2DArt/SkillIcons/passives/MeleeRange2.png"]= { ["x"]= 333, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MartialExperience.png"]= { + ["Art/2DArt/SkillIcons/passives/MeleeUtility.png"]= { ["x"]= 370, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MasterofForce.png"]= { + ["Art/2DArt/SkillIcons/passives/Meleerange.png"]= { ["x"]= 407, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MaxElementalResistNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/MentalRapidity.png"]= { ["x"]= 444, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MaxManaNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/MindPact.png"]= { ["x"]= 481, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MaximumElementalResistances2.png"]= { + ["Art/2DArt/SkillIcons/passives/MineAreaOfEffectNotable.png"]= { ["x"]= 518, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MeasuredFuryNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/MineCriticalStrikesNotable.png"]= { ["x"]= 555, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MeleeAoENode.png"]= { + ["Art/2DArt/SkillIcons/passives/MineManaReservationNotable.png"]= { ["x"]= 592, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MeleeAoENotable.png"]= { + ["Art/2DArt/SkillIcons/passives/MineTrap.png"]= { ["x"]= 629, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MeleeCriticalStrikesNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/MinionDmgHeraldSkillsNotable.png"]= { ["x"]= 666, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MeleeFireNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Mirage.png"]= { ["x"]= 703, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MeleeRange2.png"]= { + ["Art/2DArt/SkillIcons/passives/NaturalAuthorityNotable.png"]= { ["x"]= 740, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MeleeUtility.png"]= { + ["Art/2DArt/SkillIcons/passives/Necromancer/CommandingTheDarkness.png"]= { ["x"]= 777, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Meleerange.png"]= { + ["Art/2DArt/SkillIcons/passives/Necromancer/CorpseConsumptionNotable2.png"]= { ["x"]= 814, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MentalRapidity.png"]= { + ["Art/2DArt/SkillIcons/passives/Necromancer/DefensiveMinionNotable.png"]= { ["x"]= 851, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MindPact.png"]= { + ["Art/2DArt/SkillIcons/passives/Necromancer/EssenceGlutton.png"]= { ["x"]= 888, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MineAreaOfEffectNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Necromancer/GenericMinionNotable.png"]= { ["x"]= 925, ["y"]= 782, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MineCriticalStrikesNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Necromancer/GiftsOfTheDamned.png"]= { + ["x"]= 962, + ["y"]= 782, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Necromancer/OffensiveMinionNotable.png"]= { ["x"]= 0, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MineManaReservationNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Necromancer/PlagueBringer.png"]= { ["x"]= 37, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MineTrap.png"]= { + ["Art/2DArt/SkillIcons/passives/NecromancerAnointNotable.png"]= { ["x"]= 74, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/MinionDmgHeraldSkillsNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Occultist/FatefulEchoes.png"]= { ["x"]= 111, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Mirage.png"]= { + ["Art/2DArt/SkillIcons/passives/Occultist/FrigidWake.png"]= { ["x"]= 148, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/NaturalAuthorityNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Occultist/LotusExtract.png"]= { ["x"]= 185, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Necromancer/CommandingTheDarkness.png"]= { + ["Art/2DArt/SkillIcons/passives/Occultist/SoulCatalyst.png"]= { ["x"]= 222, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Necromancer/CorpseConsumptionNotable2.png"]= { + ["Art/2DArt/SkillIcons/passives/Occultist/VoidBeacon.png"]= { ["x"]= 259, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Necromancer/DefensiveMinionNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Occultist/VowOfDamnation.png"]= { ["x"]= 296, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Necromancer/EssenceGlutton.png"]= { + ["Art/2DArt/SkillIcons/passives/Occultist/WitheringPresence.png"]= { ["x"]= 333, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Necromancer/GenericMinionNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/OccultistAnointNotable.png"]= { ["x"]= 370, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Necromancer/GiftsOfTheDamned.png"]= { + ["Art/2DArt/SkillIcons/passives/OneHandedPhysicalAndLeechNotable.png"]= { ["x"]= 407, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Necromancer/OffensiveMinionNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/PathFinder/AlchemistGift.png"]= { ["x"]= 444, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Necromancer/PlagueBringer.png"]= { + ["Art/2DArt/SkillIcons/passives/PathFinder/MasterAlchemist.png"]= { ["x"]= 481, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/NecromancerAnointNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/PathFinder/MasterHerbalist.png"]= { ["x"]= 518, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Occultist/FatefulEchoes.png"]= { + ["Art/2DArt/SkillIcons/passives/PathFinder/MasterSurgeon.png"]= { ["x"]= 555, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Occultist/FrigidWake.png"]= { + ["Art/2DArt/SkillIcons/passives/PathFinder/Master Toxicist.png"]= { ["x"]= 592, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Occultist/LotusExtract.png"]= { + ["Art/2DArt/SkillIcons/passives/PathFinder/NaturesAdrenaline.png"]= { ["x"]= 629, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Occultist/SoulCatalyst.png"]= { + ["Art/2DArt/SkillIcons/passives/PathFinder/VeteranBowyer.png"]= { ["x"]= 666, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Occultist/VoidBeacon.png"]= { + ["Art/2DArt/SkillIcons/passives/PathfinderAnointNotable.png"]= { ["x"]= 703, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Occultist/VowOfDamnation.png"]= { + ["Art/2DArt/SkillIcons/passives/PhysicalDamageNotable.png"]= { ["x"]= 740, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Occultist/WitheringPresence.png"]= { + ["Art/2DArt/SkillIcons/passives/PhysicalDamageNotableGreen.png"]= { ["x"]= 777, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/OccultistAnointNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeHybrid.png"]= { ["x"]= 814, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/OneHandedPhysicalAndLeechNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNotable.png"]= { ["x"]= 851, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/PathFinder/AlchemistGift.png"]= { + ["Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimenotable1.png"]= { ["x"]= 888, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/PathFinder/MasterAlchemist.png"]= { + ["Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimenotable2.png"]= { ["x"]= 925, ["y"]= 819, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/PathFinder/MasterHerbalist.png"]= { + ["Art/2DArt/SkillIcons/passives/Poison.png"]= { + ["x"]= 962, + ["y"]= 819, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/PoisonSpellsNotable.png"]= { ["x"]= 0, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/PathFinder/MasterSurgeon.png"]= { + ["Art/2DArt/SkillIcons/passives/PowerChargeNotable.png"]= { ["x"]= 37, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/PathFinder/Master Toxicist.png"]= { + ["Art/2DArt/SkillIcons/passives/Primalist/PrimalistCorpseLoot.png"]= { ["x"]= 74, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/PathFinder/NaturesAdrenaline.png"]= { + ["Art/2DArt/SkillIcons/passives/Primalist/PrimalistInventoryExpansion.png"]= { ["x"]= 111, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/PathFinder/VeteranBowyer.png"]= { + ["Art/2DArt/SkillIcons/passives/ProfaneChemistry.png"]= { ["x"]= 148, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/PathfinderAnointNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/ProjectileDmgNotable.png"]= { ["x"]= 185, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/PhysicalDamageNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/ProjectilesNotable.png"]= { ["x"]= 222, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/PhysicalDamageNotableGreen.png"]= { + ["Art/2DArt/SkillIcons/passives/ProtectiveWinds.png"]= { ["x"]= 259, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeHybrid.png"]= { + ["Art/2DArt/SkillIcons/passives/QuickRecovery.png"]= { ["x"]= 296, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/RageNotable.png"]= { ["x"]= 333, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimenotable1.png"]= { + ["Art/2DArt/SkillIcons/passives/RageNotable1.png"]= { ["x"]= 370, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimenotable2.png"]= { + ["Art/2DArt/SkillIcons/passives/RageNotable2.png"]= { ["x"]= 407, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Poison.png"]= { + ["Art/2DArt/SkillIcons/passives/RageNotable3.png"]= { ["x"]= 444, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/PoisonSpellsNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/RangedTotemCriticalStrikes.png"]= { ["x"]= 481, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/PowerChargeNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/RangedTotemOffensive.png"]= { ["x"]= 518, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Primalist/PrimalistCorpseLoot.png"]= { + ["Art/2DArt/SkillIcons/passives/RedHolyAttackNotable.png"]= { ["x"]= 555, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Primalist/PrimalistInventoryExpansion.png"]= { + ["Art/2DArt/SkillIcons/passives/Redemption.png"]= { ["x"]= 592, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ProfaneChemistry.png"]= { + ["Art/2DArt/SkillIcons/passives/ReducedManaNotable.png"]= { ["x"]= 629, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ProjectileDmgNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/ReducedProjectileSpeedNotable.png"]= { ["x"]= 666, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ProjectilesNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNotable.png"]= { ["x"]= 703, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ProtectiveWinds.png"]= { + ["Art/2DArt/SkillIcons/passives/Resourcefulness.png"]= { ["x"]= 740, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/QuickRecovery.png"]= { + ["Art/2DArt/SkillIcons/passives/Retaliation.png"]= { ["x"]= 777, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/RageNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/RetaliationAoE.png"]= { ["x"]= 814, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/RageNotable1.png"]= { + ["Art/2DArt/SkillIcons/passives/RetaliationAttackBlock.png"]= { ["x"]= 851, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/RageNotable2.png"]= { + ["Art/2DArt/SkillIcons/passives/RetaliationDurationCooldown.png"]= { ["x"]= 888, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/RageNotable3.png"]= { + ["Art/2DArt/SkillIcons/passives/RetaliationSkillDamage.png"]= { ["x"]= 925, ["y"]= 856, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/RangedTotemCriticalStrikes.png"]= { + ["Art/2DArt/SkillIcons/passives/RetaliationSpellBlock.png"]= { + ["x"]= 962, + ["y"]= 856, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/RetaliationStun.png"]= { ["x"]= 0, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/RangedTotemOffensive.png"]= { + ["Art/2DArt/SkillIcons/passives/Retribution.png"]= { ["x"]= 37, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/RedHolyAttackNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Revelry.png"]= { ["x"]= 74, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Redemption.png"]= { + ["Art/2DArt/SkillIcons/passives/RighteousArmy.png"]= { ["x"]= 111, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ReducedManaNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Righteous Decree.png"]= { ["x"]= 148, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ReducedProjectileSpeedNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/RitualBloodLineNotable.png"]= { ["x"]= 185, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Robust.png"]= { ["x"]= 222, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Resourcefulness.png"]= { + ["Art/2DArt/SkillIcons/passives/Saboteur/BlindedAssult.png"]= { ["x"]= 259, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Retaliation.png"]= { + ["Art/2DArt/SkillIcons/passives/Saboteur/BombSpecialist.png"]= { ["x"]= 296, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/RetaliationAoE.png"]= { + ["Art/2DArt/SkillIcons/passives/Saboteur/ChainReaction.png"]= { ["x"]= 333, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/RetaliationAttackBlock.png"]= { + ["Art/2DArt/SkillIcons/passives/Saboteur/DemolitionSpecialist.png"]= { ["x"]= 370, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/RetaliationDurationCooldown.png"]= { + ["Art/2DArt/SkillIcons/passives/Saboteur/ExplosivesExpert.png"]= { ["x"]= 407, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/RetaliationSkillDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/Saboteur/LikeClockworkNotable.png"]= { ["x"]= 444, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/RetaliationSpellBlock.png"]= { + ["Art/2DArt/SkillIcons/passives/Saboteur/PerfectCrime.png"]= { ["x"]= 481, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/RetaliationStun.png"]= { + ["Art/2DArt/SkillIcons/passives/Saboteur/ShadowsDarknessBlind.png"]= { ["x"]= 518, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Retribution.png"]= { + ["Art/2DArt/SkillIcons/passives/Saboteur/ShrapnelSpecialist.png"]= { ["x"]= 555, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Revelry.png"]= { + ["Art/2DArt/SkillIcons/passives/SaboteurAnointNotable.png"]= { ["x"]= 592, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/RighteousArmy.png"]= { + ["Art/2DArt/SkillIcons/passives/Sanctuary.png"]= { ["x"]= 629, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Righteous Decree.png"]= { + ["Art/2DArt/SkillIcons/passives/SareshBloodlineNotable1.png"]= { ["x"]= 666, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/RitualBloodLineNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/SareshBloodlineNotable3.png"]= { ["x"]= 703, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Robust.png"]= { + ["Art/2DArt/SkillIcons/passives/SareshBloodlineNoteble2.png"]= { ["x"]= 740, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Saboteur/BlindedAssult.png"]= { + ["Art/2DArt/SkillIcons/passives/SavantPath.png"]= { ["x"]= 777, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Saboteur/BombSpecialist.png"]= { + ["Art/2DArt/SkillIcons/passives/SearingHeat.png"]= { ["x"]= 814, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Saboteur/ChainReaction.png"]= { + ["Art/2DArt/SkillIcons/passives/Sentinel.png"]= { ["x"]= 851, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Saboteur/DemolitionSpecialist.png"]= { + ["Art/2DArt/SkillIcons/passives/Shaper.png"]= { ["x"]= 888, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Saboteur/ExplosivesExpert.png"]= { + ["Art/2DArt/SkillIcons/passives/ShieldAttackDamage.png"]= { ["x"]= 925, ["y"]= 893, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Saboteur/LikeClockworkNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/ShieldNotable.png"]= { + ["x"]= 962, + ["y"]= 893, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ShrugOff.png"]= { ["x"]= 0, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Saboteur/PerfectCrime.png"]= { + ["Art/2DArt/SkillIcons/passives/SkitteringRunes.png"]= { ["x"]= 37, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Saboteur/ShadowsDarknessBlind.png"]= { + ["Art/2DArt/SkillIcons/passives/Slayer/BaneOfLegends.png"]= { ["x"]= 74, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Saboteur/ShrapnelSpecialist.png"]= { + ["Art/2DArt/SkillIcons/passives/Slayer/BrutalFervor.png"]= { ["x"]= 111, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/SaboteurAnointNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Slayer/Charges.png"]= { ["x"]= 148, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Sanctuary.png"]= { + ["Art/2DArt/SkillIcons/passives/Slayer/CriticalAttacks.png"]= { ["x"]= 185, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/SareshBloodlineNotable1.png"]= { + ["Art/2DArt/SkillIcons/passives/Slayer/EndlessHunger.png"]= { ["x"]= 222, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/SareshBloodlineNotable3.png"]= { + ["Art/2DArt/SkillIcons/passives/Slayer/Headman.png"]= { ["x"]= 259, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/SareshBloodlineNoteble2.png"]= { + ["Art/2DArt/SkillIcons/passives/Slayer/Impact.png"]= { ["x"]= 296, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/SavantPath.png"]= { + ["Art/2DArt/SkillIcons/passives/SlayerAnointNotable.png"]= { ["x"]= 333, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/SearingHeat.png"]= { + ["Art/2DArt/SkillIcons/passives/SoulPact.png"]= { ["x"]= 370, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Sentinel.png"]= { + ["Art/2DArt/SkillIcons/passives/SoulSiphoning.png"]= { ["x"]= 407, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Shaper.png"]= { + ["Art/2DArt/SkillIcons/passives/SpellSuppressionLifeFlasksN.png"]= { ["x"]= 444, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ShieldAttackDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/SpellSupressionAndEnergyShieldNotable.png"]= { ["x"]= 481, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ShieldNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/SpellSupressionNotable1.png"]= { ["x"]= 518, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ShrugOff.png"]= { + ["Art/2DArt/SkillIcons/passives/SpellSupressionNotable2.png"]= { ["x"]= 555, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/SkitteringRunes.png"]= { + ["Art/2DArt/SkillIcons/passives/SpikedBulwark.png"]= { ["x"]= 592, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Slayer/BaneOfLegends.png"]= { + ["Art/2DArt/SkillIcons/passives/SpiritualAid.png"]= { ["x"]= 629, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Slayer/BrutalFervor.png"]= { + ["Art/2DArt/SkillIcons/passives/SpiritualCommand.png"]= { ["x"]= 666, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Slayer/Charges.png"]= { + ["Art/2DArt/SkillIcons/passives/StaffCrit.png"]= { ["x"]= 703, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Slayer/CriticalAttacks.png"]= { + ["Art/2DArt/SkillIcons/passives/StaffNotable.png"]= { ["x"]= 740, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Slayer/EndlessHunger.png"]= { + ["Art/2DArt/SkillIcons/passives/StaffNotable2.png"]= { ["x"]= 777, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Slayer/Headman.png"]= { + ["Art/2DArt/SkillIcons/passives/StaffNotable3.png"]= { ["x"]= 814, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Slayer/Impact.png"]= { + ["Art/2DArt/SkillIcons/passives/StanceNotableReservation.png"]= { ["x"]= 851, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/SlayerAnointNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/StanceNotableSwitching.png"]= { ["x"]= 888, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/SoulPact.png"]= { + ["Art/2DArt/SkillIcons/passives/Storm Weaver.png"]= { ["x"]= 925, ["y"]= 930, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/SoulSiphoning.png"]= { + ["Art/2DArt/SkillIcons/passives/StrengthOfBlood.png"]= { + ["x"]= 962, + ["y"]= 930, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/StrikeSkillsNotable.png"]= { ["x"]= 0, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/SpellSuppressionLifeFlasksN.png"]= { + ["Art/2DArt/SkillIcons/passives/StunAvoidNotable.png"]= { ["x"]= 37, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/SpellSupressionAndEnergyShieldNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/StunMastery.png"]= { ["x"]= 74, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/SpellSupressionNotable1.png"]= { + ["Art/2DArt/SkillIcons/passives/SupremeProdigy.png"]= { ["x"]= 111, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/SpellSupressionNotable2.png"]= { + ["Art/2DArt/SkillIcons/passives/Survivalist.png"]= { ["x"]= 148, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/SpikedBulwark.png"]= { + ["Art/2DArt/SkillIcons/passives/SwordNotable1.png"]= { ["x"]= 185, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/SpiritualAid.png"]= { + ["Art/2DArt/SkillIcons/passives/TasteforBlood.png"]= { ["x"]= 222, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/SpiritualCommand.png"]= { + ["Art/2DArt/SkillIcons/passives/TempestBlast.png"]= { ["x"]= 259, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/StaffCrit.png"]= { + ["Art/2DArt/SkillIcons/passives/ThrillKiller.png"]= { ["x"]= 296, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/StaffNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/TinctureFlaskNotable1.png"]= { ["x"]= 333, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/StaffNotable2.png"]= { + ["Art/2DArt/SkillIcons/passives/TinctureManaNotable1.png"]= { ["x"]= 370, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/StaffNotable3.png"]= { + ["Art/2DArt/SkillIcons/passives/TinctureNotable1.png"]= { ["x"]= 407, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/StanceNotableReservation.png"]= { + ["Art/2DArt/SkillIcons/passives/TinctureNotable2.png"]= { ["x"]= 444, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/StanceNotableSwitching.png"]= { + ["Art/2DArt/SkillIcons/passives/TinctureNotable3.png"]= { ["x"]= 481, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Storm Weaver.png"]= { + ["Art/2DArt/SkillIcons/passives/TotemDmgNotable.png"]= { ["x"]= 518, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/StrengthOfBlood.png"]= { + ["Art/2DArt/SkillIcons/passives/Trap.png"]= { ["x"]= 555, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/StrikeSkillsNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Trap2.png"]= { ["x"]= 592, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/StunAvoidNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/TrapAndMineDmgNotable.png"]= { ["x"]= 629, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/StunMastery.png"]= { + ["Art/2DArt/SkillIcons/passives/Trickster/DamageOverTime.png"]= { ["x"]= 666, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/SupremeProdigy.png"]= { + ["Art/2DArt/SkillIcons/passives/Trickster/HeedfulRecovery.png"]= { ["x"]= 703, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Survivalist.png"]= { + ["Art/2DArt/SkillIcons/passives/Trickster/ImmuneToDoT.png"]= { ["x"]= 740, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/SwordNotable1.png"]= { + ["Art/2DArt/SkillIcons/passives/Trickster/OneStepAheadTrickster.png"]= { ["x"]= 777, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/TasteforBlood.png"]= { + ["Art/2DArt/SkillIcons/passives/Trickster/PolymathTrickster.png"]= { ["x"]= 814, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/TempestBlast.png"]= { + ["Art/2DArt/SkillIcons/passives/Trickster/SoulThiefTrickster.png"]= { ["x"]= 851, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ThrillKiller.png"]= { + ["Art/2DArt/SkillIcons/passives/Trickster/SupressionEnergyShieldTrickster.png"]= { ["x"]= 888, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/TinctureFlaskNotable1.png"]= { + ["Art/2DArt/SkillIcons/passives/Trickster/UncontrolledVigour.png"]= { ["x"]= 925, ["y"]= 967, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/TinctureManaNotable1.png"]= { + ["Art/2DArt/SkillIcons/passives/TricksterAnointNotable.png"]= { + ["x"]= 962, + ["y"]= 967, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/TrueStriker.png"]= { ["x"]= 0, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/TinctureNotable1.png"]= { + ["Art/2DArt/SkillIcons/passives/TwoHandedMeleeDamage.png"]= { ["x"]= 37, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/TinctureNotable2.png"]= { + ["Art/2DArt/SkillIcons/passives/TwoHandedweaponImpalesNotable.png"]= { ["x"]= 74, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/TinctureNotable3.png"]= { + ["Art/2DArt/SkillIcons/passives/Unfaltering.png"]= { ["x"]= 111, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/TotemDmgNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Unrelenting.png"]= { ["x"]= 148, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Trap.png"]= { + ["Art/2DArt/SkillIcons/passives/Unwavering.png"]= { ["x"]= 185, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Trap2.png"]= { + ["Art/2DArt/SkillIcons/passives/UpwardsFiringProjectilesNotable.png"]= { ["x"]= 222, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/TrapAndMineDmgNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Vampirism.png"]= { ["x"]= 259, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Trickster/DamageOverTime.png"]= { + ["Art/2DArt/SkillIcons/passives/VoidBarrier.png"]= { ["x"]= 296, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Trickster/HeedfulRecovery.png"]= { + ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanBloodMagic1.png"]= { ["x"]= 333, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Trickster/ImmuneToDoT.png"]= { + ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanBloodMagic2.png"]= { ["x"]= 370, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Trickster/OneStepAheadTrickster.png"]= { + ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanBloodMagic3.png"]= { ["x"]= 407, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Trickster/PolymathTrickster.png"]= { + ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanCorpses.png"]= { ["x"]= 444, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Trickster/SoulThiefTrickster.png"]= { + ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanCurses2.png"]= { ["x"]= 481, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Trickster/SupressionEnergyShieldTrickster.png"]= { + ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanCursesChoice.png"]= { ["x"]= 518, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Trickster/UncontrolledVigour.png"]= { + ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanVoodooDoll.png"]= { ["x"]= 555, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/TricksterAnointNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/WandDamage.png"]= { ["x"]= 592, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/TrueStriker.png"]= { + ["Art/2DArt/SkillIcons/passives/WarcryBuffEffectNotable.png"]= { ["x"]= 629, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/TwoHandedMeleeDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/WarcryGainDamageNotable.png"]= { ["x"]= 666, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/TwoHandedweaponImpalesNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Warden/TinctureRangedNotable.png"]= { ["x"]= 703, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Unfaltering.png"]= { + ["Art/2DArt/SkillIcons/passives/Warden/WardenAllAilments.png"]= { ["x"]= 740, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Unrelenting.png"]= { + ["Art/2DArt/SkillIcons/passives/Warden/WardenBarkskin1.png"]= { ["x"]= 777, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Unwavering.png"]= { + ["Art/2DArt/SkillIcons/passives/Warden/WardenBarkskin2.png"]= { ["x"]= 814, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/UpwardsFiringProjectilesNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/Warden/WardenColdAilments.png"]= { ["x"]= 851, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Vampirism.png"]= { + ["Art/2DArt/SkillIcons/passives/Warden/WardenFireAilments.png"]= { ["x"]= 888, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/VoidBarrier.png"]= { + ["Art/2DArt/SkillIcons/passives/Warden/WardenLightningAilments.png"]= { ["x"]= 925, ["y"]= 1004, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanBloodMagic1.png"]= { + ["Art/2DArt/SkillIcons/passives/Warden/WardenPrimitivism.png"]= { + ["x"]= 962, + ["y"]= 1004, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Warden/WardenSaps1.png"]= { ["x"]= 0, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanBloodMagic2.png"]= { + ["Art/2DArt/SkillIcons/passives/Warden/WardenSaps2.png"]= { ["x"]= 37, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanBloodMagic3.png"]= { + ["Art/2DArt/SkillIcons/passives/Warden/WardenSaps3.png"]= { ["x"]= 74, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanCorpses.png"]= { + ["Art/2DArt/SkillIcons/passives/Warden/WardenTracking.png"]= { ["x"]= 111, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanCurses2.png"]= { + ["Art/2DArt/SkillIcons/passives/WardenAnointNotable.png"]= { ["x"]= 148, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanCursesChoice.png"]= { + ["Art/2DArt/SkillIcons/passives/Warrior.png"]= { ["x"]= 185, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanVoodooDoll.png"]= { + ["Art/2DArt/SkillIcons/passives/WeaponElementalNotable.png"]= { ["x"]= 222, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/WandDamage.png"]= { + ["Art/2DArt/SkillIcons/passives/WritteninBlood.png"]= { ["x"]= 259, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/WarcryBuffEffectNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/accuracydex.png"]= { ["x"]= 296, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/WarcryGainDamageNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/adderstouch.png"]= { ["x"]= 333, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Warden/TinctureRangedNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/ambidexterity.png"]= { ["x"]= 370, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Warden/WardenAllAilments.png"]= { + ["Art/2DArt/SkillIcons/passives/amplify.png"]= { ["x"]= 407, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Warden/WardenBarkskin1.png"]= { + ["Art/2DArt/SkillIcons/passives/animalspirit.png"]= { ["x"]= 444, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Warden/WardenBarkskin2.png"]= { + ["Art/2DArt/SkillIcons/passives/arcaneefficiency.png"]= { ["x"]= 481, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Warden/WardenColdAilments.png"]= { + ["Art/2DArt/SkillIcons/passives/arcane focus.png"]= { ["x"]= 518, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Warden/WardenFireAilments.png"]= { + ["Art/2DArt/SkillIcons/passives/arcanepotency.png"]= { ["x"]= 555, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Warden/WardenLightningAilments.png"]= { + ["Art/2DArt/SkillIcons/passives/arcaneradience.png"]= { ["x"]= 592, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Warden/WardenPrimitivism.png"]= { + ["Art/2DArt/SkillIcons/passives/armourmastery.png"]= { ["x"]= 629, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Warden/WardenSaps1.png"]= { + ["Art/2DArt/SkillIcons/passives/arsonist.png"]= { ["x"]= 666, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Warden/WardenSaps2.png"]= { + ["Art/2DArt/SkillIcons/passives/ashfrostandstorm.png"]= { ["x"]= 703, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Warden/WardenSaps3.png"]= { + ["Art/2DArt/SkillIcons/passives/attackspeedbow.png"]= { ["x"]= 740, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Warden/WardenTracking.png"]= { + ["Art/2DArt/SkillIcons/passives/authority.png"]= { ["x"]= 777, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/WardenAnointNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/barricade.png"]= { ["x"]= 814, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/Warrior.png"]= { + ["Art/2DArt/SkillIcons/passives/berserking.png"]= { ["x"]= 851, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/WeaponElementalNotable.png"]= { + ["Art/2DArt/SkillIcons/passives/bladebarrier.png"]= { ["x"]= 888, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/WritteninBlood.png"]= { + ["Art/2DArt/SkillIcons/passives/blademaster.png"]= { ["x"]= 925, ["y"]= 1041, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/accuracydex.png"]= { + ["Art/2DArt/SkillIcons/passives/blademistress.png"]= { + ["x"]= 962, + ["y"]= 1041, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/blastradius.png"]= { ["x"]= 0, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/adderstouch.png"]= { + ["Art/2DArt/SkillIcons/passives/bodysoul.png"]= { ["x"]= 37, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ambidexterity.png"]= { + ["Art/2DArt/SkillIcons/passives/borntofight.png"]= { ["x"]= 74, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/amplify.png"]= { + ["Art/2DArt/SkillIcons/passives/breathofrime.png"]= { ["x"]= 111, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/animalspirit.png"]= { + ["Art/2DArt/SkillIcons/passives/butchery.png"]= { ["x"]= 148, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/arcaneefficiency.png"]= { + ["Art/2DArt/SkillIcons/passives/castavoidinterruption.png"]= { ["x"]= 185, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/arcane focus.png"]= { + ["Art/2DArt/SkillIcons/passives/catalyse.png"]= { ["x"]= 222, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/arcanepotency.png"]= { + ["Art/2DArt/SkillIcons/passives/chargedex.png"]= { ["x"]= 259, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/arcaneradience.png"]= { + ["Art/2DArt/SkillIcons/passives/chargeint.png"]= { ["x"]= 296, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/armourmastery.png"]= { + ["Art/2DArt/SkillIcons/passives/chargestr.png"]= { ["x"]= 333, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/arsonist.png"]= { + ["Art/2DArt/SkillIcons/passives/cleverconstruction.png"]= { ["x"]= 370, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ashfrostandstorm.png"]= { + ["Art/2DArt/SkillIcons/passives/clustersLink2.png"]= { ["x"]= 407, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/attackspeedbow.png"]= { + ["Art/2DArt/SkillIcons/passives/clustersLink3.png"]= { ["x"]= 444, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/authority.png"]= { + ["Art/2DArt/SkillIcons/passives/criticalstrikemultiplier2.png"]= { ["x"]= 481, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/barricade.png"]= { + ["Art/2DArt/SkillIcons/passives/cruelblade.png"]= { ["x"]= 518, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/berserking.png"]= { + ["Art/2DArt/SkillIcons/passives/daggerpenetration.png"]= { ["x"]= 555, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/bladebarrier.png"]= { + ["Art/2DArt/SkillIcons/passives/deadlydraw.png"]= { ["x"]= 592, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/blademaster.png"]= { + ["Art/2DArt/SkillIcons/passives/deadlyprecision.png"]= { ["x"]= 629, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/blademistress.png"]= { + ["Art/2DArt/SkillIcons/passives/deathattunement.png"]= { ["x"]= 666, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/blastradius.png"]= { + ["Art/2DArt/SkillIcons/passives/deepthoughts.png"]= { ["x"]= 703, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/bodysoul.png"]= { + ["Art/2DArt/SkillIcons/passives/deepwisdom.png"]= { ["x"]= 740, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/borntofight.png"]= { + ["Art/2DArt/SkillIcons/passives/diamondskin.png"]= { ["x"]= 777, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/breathofrime.png"]= { + ["Art/2DArt/SkillIcons/passives/doomcast.png"]= { ["x"]= 814, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/butchery.png"]= { + ["Art/2DArt/SkillIcons/passives/eagleeye.png"]= { ["x"]= 851, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/castavoidinterruption.png"]= { + ["Art/2DArt/SkillIcons/passives/eagletalons.png"]= { ["x"]= 888, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/catalyse.png"]= { + ["Art/2DArt/SkillIcons/passives/elderpower.png"]= { ["x"]= 925, ["y"]= 1078, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/chargedex.png"]= { + ["Art/2DArt/SkillIcons/passives/elementalist.png"]= { + ["x"]= 962, + ["y"]= 1078, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/evasion.png"]= { ["x"]= 0, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/chargeint.png"]= { + ["Art/2DArt/SkillIcons/passives/executioner.png"]= { ["x"]= 37, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/chargestr.png"]= { + ["Art/2DArt/SkillIcons/passives/expeditiousmunitions.png"]= { ["x"]= 74, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/cleverconstruction.png"]= { + ["Art/2DArt/SkillIcons/passives/fellingtheweak.png"]= { ["x"]= 111, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/clustersLink2.png"]= { + ["Art/2DArt/SkillIcons/passives/fending.png"]= { ["x"]= 148, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/clustersLink3.png"]= { + ["Art/2DArt/SkillIcons/passives/finesse.png"]= { ["x"]= 185, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/criticalstrikemultiplier2.png"]= { + ["Art/2DArt/SkillIcons/passives/firedamage.png"]= { ["x"]= 222, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/cruelblade.png"]= { + ["Art/2DArt/SkillIcons/passives/flameborn.png"]= { ["x"]= 259, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/daggerpenetration.png"]= { + ["Art/2DArt/SkillIcons/passives/flaying.png"]= { ["x"]= 296, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/deadlydraw.png"]= { + ["Art/2DArt/SkillIcons/passives/foresight.png"]= { ["x"]= 333, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/deadlyprecision.png"]= { + ["Art/2DArt/SkillIcons/passives/frostborn.png"]= { ["x"]= 370, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/deathattunement.png"]= { + ["Art/2DArt/SkillIcons/passives/furybolts.png"]= { ["x"]= 407, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/deepthoughts.png"]= { + ["Art/2DArt/SkillIcons/passives/fussilade.png"]= { ["x"]= 444, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/deepwisdom.png"]= { + ["Art/2DArt/SkillIcons/passives/galvanichammer.png"]= { ["x"]= 481, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/diamondskin.png"]= { + ["Art/2DArt/SkillIcons/passives/golemsblood.png"]= { ["x"]= 518, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/doomcast.png"]= { + ["Art/2DArt/SkillIcons/passives/grace.png"]= { ["x"]= 555, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/eagleeye.png"]= { + ["Art/2DArt/SkillIcons/passives/graveexpectations.png"]= { ["x"]= 592, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/eagletalons.png"]= { + ["Art/2DArt/SkillIcons/passives/graveintentions.png"]= { ["x"]= 629, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/elderpower.png"]= { + ["Art/2DArt/SkillIcons/passives/gravepact.png"]= { ["x"]= 666, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/elementalist.png"]= { + ["Art/2DArt/SkillIcons/passives/hammerblows.png"]= { ["x"]= 703, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/evasion.png"]= { + ["Art/2DArt/SkillIcons/passives/hatchetmaster.png"]= { ["x"]= 740, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/executioner.png"]= { + ["Art/2DArt/SkillIcons/passives/heartofthegladiator.png"]= { ["x"]= 777, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/expeditiousmunitions.png"]= { + ["Art/2DArt/SkillIcons/passives/heartpierce.png"]= { ["x"]= 814, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/fellingtheweak.png"]= { + ["Art/2DArt/SkillIcons/passives/heartseeker.png"]= { ["x"]= 851, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/fending.png"]= { + ["Art/2DArt/SkillIcons/passives/heavydraw.png"]= { ["x"]= 888, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/finesse.png"]= { + ["Art/2DArt/SkillIcons/passives/hellfire.png"]= { ["x"]= 925, ["y"]= 1115, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/firedamage.png"]= { + ["Art/2DArt/SkillIcons/passives/highexplosives.png"]= { + ["x"]= 962, + ["y"]= 1115, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/icebite.png"]= { ["x"]= 0, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/flameborn.png"]= { + ["Art/2DArt/SkillIcons/passives/iceheart.png"]= { ["x"]= 37, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/flaying.png"]= { + ["Art/2DArt/SkillIcons/passives/increased armor.png"]= { ["x"]= 74, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/foresight.png"]= { + ["Art/2DArt/SkillIcons/passives/influence.png"]= { ["x"]= 111, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/frostborn.png"]= { + ["Art/2DArt/SkillIcons/passives/innerforce.png"]= { ["x"]= 148, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/furybolts.png"]= { + ["Art/2DArt/SkillIcons/passives/ironwoodtotem.png"]= { ["x"]= 185, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/fussilade.png"]= { + ["Art/2DArt/SkillIcons/passives/kingofthehill.png"]= { ["x"]= 222, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/galvanichammer.png"]= { + ["Art/2DArt/SkillIcons/passives/lavalash.png"]= { ["x"]= 259, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/golemsblood.png"]= { + ["Art/2DArt/SkillIcons/passives/leadership.png"]= { ["x"]= 296, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/grace.png"]= { + ["Art/2DArt/SkillIcons/passives/legendaryswordsman.png"]= { ["x"]= 333, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/graveexpectations.png"]= { + ["Art/2DArt/SkillIcons/passives/life1.png"]= { ["x"]= 370, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/graveintentions.png"]= { + ["Art/2DArt/SkillIcons/passives/lifeleech.png"]= { ["x"]= 407, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/gravepact.png"]= { + ["Art/2DArt/SkillIcons/passives/lifeleechimmunity.png"]= { ["x"]= 444, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/hammerblows.png"]= { + ["Art/2DArt/SkillIcons/passives/lightningint.png"]= { ["x"]= 481, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/hatchetmaster.png"]= { + ["Art/2DArt/SkillIcons/passives/lordofthedead.png"]= { ["x"]= 518, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/heartofthegladiator.png"]= { + ["Art/2DArt/SkillIcons/passives/macedmg.png"]= { ["x"]= 555, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/heartpierce.png"]= { + ["Art/2DArt/SkillIcons/passives/manaconduit.png"]= { ["x"]= 592, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/heartseeker.png"]= { + ["Art/2DArt/SkillIcons/passives/masterfletcher.png"]= { ["x"]= 629, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/heavydraw.png"]= { + ["Art/2DArt/SkillIcons/passives/mastersapper.png"]= { ["x"]= 666, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/hellfire.png"]= { + ["Art/2DArt/SkillIcons/passives/masterywand.png"]= { ["x"]= 703, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/highexplosives.png"]= { + ["Art/2DArt/SkillIcons/passives/melding.png"]= { ["x"]= 740, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/icebite.png"]= { + ["Art/2DArt/SkillIcons/passives/mentalacuity.png"]= { ["x"]= 777, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/iceheart.png"]= { + ["Art/2DArt/SkillIcons/passives/minddrinker.png"]= { ["x"]= 814, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/increased armor.png"]= { + ["Art/2DArt/SkillIcons/passives/minionblockchance.png"]= { ["x"]= 851, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/influence.png"]= { + ["Art/2DArt/SkillIcons/passives/newcolddamage.png"]= { ["x"]= 888, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/innerforce.png"]= { + ["Art/2DArt/SkillIcons/passives/newenergyshield.png"]= { ["x"]= 925, ["y"]= 1152, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/ironwoodtotem.png"]= { + ["Art/2DArt/SkillIcons/passives/newevadepercentage.png"]= { + ["x"]= 962, + ["y"]= 1152, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/newincreasedcritical.png"]= { ["x"]= 0, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/kingofthehill.png"]= { + ["Art/2DArt/SkillIcons/passives/newnewattackspeed.png"]= { ["x"]= 37, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/lavalash.png"]= { + ["Art/2DArt/SkillIcons/passives/newtitanicmight.png"]= { ["x"]= 74, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/leadership.png"]= { + ["Art/2DArt/SkillIcons/passives/nightstalker.png"]= { ["x"]= 111, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/legendaryswordsman.png"]= { + ["Art/2DArt/SkillIcons/passives/nimbleness.png"]= { ["x"]= 148, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/life1.png"]= { + ["Art/2DArt/SkillIcons/passives/oxblood.png"]= { ["x"]= 185, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/lifeleech.png"]= { + ["Art/2DArt/SkillIcons/passives/perfectaim.png"]= { ["x"]= 222, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/lifeleechimmunity.png"]= { + ["Art/2DArt/SkillIcons/passives/plusdexterity.png"]= { ["x"]= 259, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/lightningint.png"]= { + ["Art/2DArt/SkillIcons/passives/plusintelligence.png"]= { ["x"]= 296, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/lordofthedead.png"]= { + ["Art/2DArt/SkillIcons/passives/plusstrength.png"]= { ["x"]= 333, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/macedmg.png"]= { + ["Art/2DArt/SkillIcons/passives/potencyofwill.png"]= { ["x"]= 370, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/manaconduit.png"]= { + ["Art/2DArt/SkillIcons/passives/precision.png"]= { ["x"]= 407, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/masterfletcher.png"]= { + ["Art/2DArt/SkillIcons/passives/pyromaniac.png"]= { ["x"]= 444, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/mastersapper.png"]= { + ["Art/2DArt/SkillIcons/passives/quickstep.png"]= { ["x"]= 481, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/masterywand.png"]= { + ["Art/2DArt/SkillIcons/passives/razorsedge.png"]= { ["x"]= 518, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/melding.png"]= { + ["Art/2DArt/SkillIcons/passives/reaver.png"]= { ["x"]= 555, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/mentalacuity.png"]= { + ["Art/2DArt/SkillIcons/passives/revengeofthehunted.png"]= { ["x"]= 592, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/minddrinker.png"]= { + ["Art/2DArt/SkillIcons/passives/saboteur.png"]= { ["x"]= 629, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/minionblockchance.png"]= { + ["Art/2DArt/SkillIcons/passives/savant.png"]= { ["x"]= 666, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/newcolddamage.png"]= { + ["Art/2DArt/SkillIcons/passives/scissorblades.png"]= { ["x"]= 703, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/newenergyshield.png"]= { + ["Art/2DArt/SkillIcons/passives/serpentstance.png"]= { ["x"]= 740, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/newevadepercentage.png"]= { + ["Art/2DArt/SkillIcons/passives/shamsnisticfury.png"]= { ["x"]= 777, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/newincreasedcritical.png"]= { + ["Art/2DArt/SkillIcons/passives/shieldwall.png"]= { ["x"]= 814, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/newnewattackspeed.png"]= { + ["Art/2DArt/SkillIcons/passives/skullcracking.png"]= { ["x"]= 851, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/newtitanicmight.png"]= { + ["Art/2DArt/SkillIcons/passives/soulsyphon.png"]= { ["x"]= 888, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/nightstalker.png"]= { + ["Art/2DArt/SkillIcons/passives/sovereignty.png"]= { ["x"]= 925, ["y"]= 1189, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/nimbleness.png"]= { + ["Art/2DArt/SkillIcons/passives/sparkingattacks.png"]= { + ["x"]= 962, + ["y"]= 1189, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/stabbingcomeback.png"]= { ["x"]= 0, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/oxblood.png"]= { + ["Art/2DArt/SkillIcons/passives/staticshield.png"]= { ["x"]= 37, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/perfectaim.png"]= { + ["Art/2DArt/SkillIcons/passives/stormborn.png"]= { ["x"]= 74, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/plusdexterity.png"]= { + ["Art/2DArt/SkillIcons/passives/strongarm.png"]= { ["x"]= 111, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/plusintelligence.png"]= { + ["Art/2DArt/SkillIcons/passives/stunmace.png"]= { ["x"]= 148, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/plusstrength.png"]= { + ["Art/2DArt/SkillIcons/passives/stunstaff.png"]= { ["x"]= 185, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/potencyofwill.png"]= { + ["Art/2DArt/SkillIcons/passives/swagger.png"]= { ["x"]= 222, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/precision.png"]= { + ["Art/2DArt/SkillIcons/passives/swashbuckler.png"]= { ["x"]= 259, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/pyromaniac.png"]= { + ["Art/2DArt/SkillIcons/passives/talonsofmurder.png"]= { ["x"]= 296, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/quickstep.png"]= { + ["Art/2DArt/SkillIcons/passives/thickskin.png"]= { ["x"]= 333, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/razorsedge.png"]= { + ["Art/2DArt/SkillIcons/passives/throatseeker.png"]= { ["x"]= 370, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/reaver.png"]= { + ["Art/2DArt/SkillIcons/passives/titanicmight.png"]= { ["x"]= 407, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/revengeofthehunted.png"]= { + ["Art/2DArt/SkillIcons/passives/totemandbrandrange.png"]= { ["x"]= 444, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/saboteur.png"]= { + ["Art/2DArt/SkillIcons/passives/totemicmastery.png"]= { ["x"]= 481, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/savant.png"]= { + ["Art/2DArt/SkillIcons/passives/totemiczeal.png"]= { ["x"]= 518, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/scissorblades.png"]= { + ["Art/2DArt/SkillIcons/passives/trapsradius.png"]= { ["x"]= 555, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/serpentstance.png"]= { + ["Art/2DArt/SkillIcons/passives/trollblood.png"]= { ["x"]= 592, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/shamsnisticfury.png"]= { + ["Art/2DArt/SkillIcons/passives/volitilemines.png"]= { ["x"]= 629, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/shieldwall.png"]= { + ["Art/2DArt/SkillIcons/passives/wandslingersprowess.png"]= { ["x"]= 666, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/skullcracking.png"]= { + ["Art/2DArt/SkillIcons/passives/whirlingstaff.png"]= { ["x"]= 703, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/soulsyphon.png"]= { + ["Art/2DArt/SkillIcons/passives/wreckingball.png"]= { ["x"]= 740, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/sovereignty.png"]= { + ["Art/2DArt/SkillIcons/passives/Ascendants/Assassin.png"]= { ["x"]= 777, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/sparkingattacks.png"]= { + ["Art/2DArt/SkillIcons/passives/Ascendants/Berserker.png"]= { ["x"]= 814, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/stabbingcomeback.png"]= { + ["Art/2DArt/SkillIcons/passives/Ascendants/Champion.png"]= { ["x"]= 851, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/staticshield.png"]= { + ["Art/2DArt/SkillIcons/passives/Ascendants/Chieftain.png"]= { ["x"]= 888, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/stormborn.png"]= { + ["Art/2DArt/SkillIcons/passives/Ascendants/Deadeye.png"]= { ["x"]= 925, ["y"]= 1226, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/strongarm.png"]= { + ["Art/2DArt/SkillIcons/passives/Ascendants/Elementalist.png"]= { + ["x"]= 962, + ["y"]= 1226, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/Gladiator.png"]= { ["x"]= 0, ["y"]= 1263, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/stunmace.png"]= { + ["Art/2DArt/SkillIcons/passives/Ascendants/Guardian.png"]= { ["x"]= 37, ["y"]= 1263, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/stunstaff.png"]= { + ["Art/2DArt/SkillIcons/passives/Ascendants/Hierophant.png"]= { ["x"]= 74, ["y"]= 1263, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/swagger.png"]= { + ["Art/2DArt/SkillIcons/passives/Ascendants/Inquisitor.png"]= { ["x"]= 111, ["y"]= 1263, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/swashbuckler.png"]= { + ["Art/2DArt/SkillIcons/passives/Ascendants/Juggernaut.png"]= { ["x"]= 148, ["y"]= 1263, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/talonsofmurder.png"]= { + ["Art/2DArt/SkillIcons/passives/Ascendants/Necromancer.png"]= { ["x"]= 185, ["y"]= 1263, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/thickskin.png"]= { + ["Art/2DArt/SkillIcons/passives/Ascendants/Occultist.png"]= { ["x"]= 222, ["y"]= 1263, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/throatseeker.png"]= { + ["Art/2DArt/SkillIcons/passives/Ascendants/Pathfinder.png"]= { ["x"]= 259, ["y"]= 1263, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/titanicmight.png"]= { + ["Art/2DArt/SkillIcons/passives/Ascendants/Raider.png"]= { ["x"]= 296, ["y"]= 1263, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/totemandbrandrange.png"]= { + ["Art/2DArt/SkillIcons/passives/Ascendants/Saboteur.png"]= { ["x"]= 333, ["y"]= 1263, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/totemicmastery.png"]= { + ["Art/2DArt/SkillIcons/passives/Ascendants/Slayer.png"]= { ["x"]= 370, ["y"]= 1263, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/totemiczeal.png"]= { + ["Art/2DArt/SkillIcons/passives/Ascendants/Trickster.png"]= { ["x"]= 407, ["y"]= 1263, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/trapsradius.png"]= { + ["Art/2DArt/SkillIcons/passives/Assassin/Ambush.png"]= { ["x"]= 444, ["y"]= 1263, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/trollblood.png"]= { + ["Art/2DArt/SkillIcons/passives/Chieftain/TawhoaForestsStrength.png"]= { ["x"]= 481, ["y"]= 1263, ["w"]= 37, ["h"]= 37 }, - ["Art/2DArt/SkillIcons/passives/volitilemines.png"]= { - ["x"]= 518, - ["y"]= 1263, - ["w"]= 37, - ["h"]= 37 - }, - ["Art/2DArt/SkillIcons/passives/wandslingersprowess.png"]= { - ["x"]= 555, - ["y"]= 1263, - ["w"]= 37, - ["h"]= 37 - }, - ["Art/2DArt/SkillIcons/passives/whirlingstaff.png"]= { - ["x"]= 592, - ["y"]= 1263, - ["w"]= 37, - ["h"]= 37 - }, - ["Art/2DArt/SkillIcons/passives/wreckingball.png"]= { - ["x"]= 629, - ["y"]= 1263, - ["w"]= 37, - ["h"]= 37 - }, ["Art/2DArt/SkillIcons/passives/HinekoraPassiveIcon1.png"]= { - ["x"]= 666, + ["x"]= 518, ["y"]= 1263, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/HinekoraPassiveIcon2.png"]= { - ["x"]= 703, + ["x"]= 555, ["y"]= 1263, ["w"]= 37, ["h"]= 37 }, ["Art/2DArt/SkillIcons/passives/HinekoraPassiveIcon3.png"]= { - ["x"]= 740, + ["x"]= 592, ["y"]= 1263, ["w"]= 37, ["h"]= 37 @@ -13977,8 +14229,8 @@ return { } }, ["keystoneInactive"]= { - ["filename"]= "https://web.poecdn.com/image/passive-skill/skills-disabled-3.jpg?ac7492dd", - ["w"]= 962, + ["filename"]= "https://web.poecdn.com/image/passive-skill/skills-disabled-3.jpg?94caf4e2", + ["w"]= 999, ["h"]= 1459, ["coords"]= { ["Art/2DArt/SkillIcons/passives/AnointOnlyKeystone.png"]= { @@ -14090,217 +14342,217 @@ return { ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/KeystoneEldritchBattery.png"]= { - ["x"]= 0, - ["y"]= 1353, + ["x"]= 936, + ["y"]= 1300, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/KeystoneElementalEquilibrium.png"]= { - ["x"]= 52, + ["x"]= 0, ["y"]= 1353, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/KeystoneElementalOverload.png"]= { - ["x"]= 104, + ["x"]= 52, ["y"]= 1353, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/KeystoneHexMaster.png"]= { - ["x"]= 156, + ["x"]= 104, ["y"]= 1353, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/KeystoneIronGrip.png"]= { - ["x"]= 208, + ["x"]= 156, ["y"]= 1353, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/KeystoneIronReflexes.png"]= { - ["x"]= 260, + ["x"]= 208, ["y"]= 1353, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/KeystoneIronWill.png"]= { - ["x"]= 312, + ["x"]= 260, ["y"]= 1353, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/KeystoneMinionInstability.png"]= { - ["x"]= 364, + ["x"]= 312, ["y"]= 1353, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/KeystoneNecromanticAegis.png"]= { - ["x"]= 416, + ["x"]= 364, ["y"]= 1353, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/KeystonePainAttunement.png"]= { - ["x"]= 468, + ["x"]= 416, ["y"]= 1353, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/KeystonePointBlankArcher.png"]= { - ["x"]= 520, + ["x"]= 468, ["y"]= 1353, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/KeystoneResoluteTechnique.png"]= { - ["x"]= 572, + ["x"]= 520, ["y"]= 1353, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/KeystoneUnwaveringStance.png"]= { - ["x"]= 624, + ["x"]= 572, ["y"]= 1353, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/Kineticism.png"]= { - ["x"]= 676, + ["x"]= 624, ["y"]= 1353, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/LoneMessenger.png"]= { - ["x"]= 728, + ["x"]= 676, ["y"]= 1353, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/MiracleMaker.png"]= { - ["x"]= 780, + ["x"]= 728, ["y"]= 1353, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/MomentofRespite.png"]= { - ["x"]= 832, + ["x"]= 780, ["y"]= 1353, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/NaturesPatience.png"]= { - ["x"]= 884, + ["x"]= 832, ["y"]= 1353, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/Occultist/EldrichBarrier.png"]= { - ["x"]= 0, - ["y"]= 1406, + ["x"]= 884, + ["y"]= 1353, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/Pitfighter.png"]= { - ["x"]= 52, - ["y"]= 1406, + ["x"]= 936, + ["y"]= 1353, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/PreciseTechnique.png"]= { - ["x"]= 104, + ["x"]= 0, ["y"]= 1406, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/Resilience.png"]= { - ["x"]= 156, + ["x"]= 52, ["y"]= 1406, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/RetaliationKeystone.png"]= { - ["x"]= 208, + ["x"]= 104, ["y"]= 1406, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/SacredBastionKeystone.png"]= { - ["x"]= 260, + ["x"]= 156, ["y"]= 1406, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/SecretOfAgony.png"]= { - ["x"]= 312, + ["x"]= 208, ["y"]= 1406, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/SupremeEgo.png"]= { - ["x"]= 364, + ["x"]= 260, ["y"]= 1406, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/TinctureKeystone1.png"]= { - ["x"]= 416, + ["x"]= 312, ["y"]= 1406, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/Trickster/AcrobaticWillpower.png"]= { - ["x"]= 468, + ["x"]= 364, ["y"]= 1406, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/VersatileCombatant.png"]= { - ["x"]= 520, + ["x"]= 416, ["y"]= 1406, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/VeteransAwareness.png"]= { - ["x"]= 572, + ["x"]= 468, ["y"]= 1406, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/WindDancer.png"]= { - ["x"]= 624, + ["x"]= 520, ["y"]= 1406, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/ghostreaver.png"]= { - ["x"]= 676, + ["x"]= 572, ["y"]= 1406, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/heroicspirit.png"]= { - ["x"]= 728, + ["x"]= 624, ["y"]= 1406, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/liferegentoenergyshield.png"]= { - ["x"]= 780, + ["x"]= 676, ["y"]= 1406, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/totemmax.png"]= { - ["x"]= 832, + ["x"]= 728, ["y"]= 1406, ["w"]= 52, ["h"]= 53 }, ["Art/2DArt/SkillIcons/passives/vaalpact.png"]= { - ["x"]= 884, + ["x"]= 780, ["y"]= 1406, ["w"]= 52, ["h"]= 53 @@ -17169,9 +17421,9 @@ return { } }, ["tattooActiveEffect"]= { - ["filename"]= "https://web.poecdn.com/image/passive-skill/tattoo-active-effect-3.png?3b0007d2", + ["filename"]= "https://web.poecdn.com/image/passive-skill/tattoo-active-effect-3.png?b8637bfd", ["w"]= 556, - ["h"]= 704, + ["h"]= 842, ["coords"]= { ["Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/ArohonguiTribePassiveBG.png"]= { ["x"]= 0, @@ -17191,65 +17443,77 @@ return { ["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/KeystoneHinekoraPassiveBG.png"]= { + ["x"]= { + 417, + 0 + }, + ["y"]= { + 0, + 552 + }, + ["w"]= { + 139, + 288 + }, + ["h"]= { + 138, + 290 + } }, - ["Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/NgamahuTribePassiveBG.png"]= { + ["Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KitavaTribePassiveBG.png"]= { ["x"]= 0, ["y"]= 138, ["w"]= 139, ["h"]= 138 }, - ["Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/RamakoTribePassiveBG.png"]= { + ["Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/NgamahuTribePassiveBG.png"]= { ["x"]= 139, ["y"]= 138, ["w"]= 139, ["h"]= 138 }, - ["Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/RongokuraiTribePassiveBG.png"]= { + ["Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/RamakoTribePassiveBG.png"]= { ["x"]= 278, ["y"]= 138, ["w"]= 139, ["h"]= 138 }, - ["Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/TasalioTribePassiveBG.png"]= { + ["Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/RongokuraiTribePassiveBG.png"]= { ["x"]= 417, ["y"]= 138, ["w"]= 139, ["h"]= 138 }, - ["Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/TawhoaTribePassiveBG.png"]= { + ["Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/TasalioTribePassiveBG.png"]= { ["x"]= 0, ["y"]= 276, ["w"]= 139, ["h"]= 138 }, - ["Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/TukohamaTribePassiveBG.png"]= { + ["Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/TawhoaTribePassiveBG.png"]= { ["x"]= 139, ["y"]= 276, ["w"]= 139, ["h"]= 138 }, - ["Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/ValakoTribePassiveBG.png"]= { + ["Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/TukohamaTribePassiveBG.png"]= { ["x"]= 278, ["y"]= 276, ["w"]= 139, ["h"]= 138 }, - ["Art/2DArt/UIImages/InGame/Village/RuneCraftingPassiveBG.png"]= { + ["Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/ValakoTribePassiveBG.png"]= { ["x"]= 417, ["y"]= 276, ["w"]= 139, ["h"]= 138 }, - ["Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png"]= { + ["Art/2DArt/UIImages/InGame/Village/RuneCraftingPassiveBG.png"]= { ["x"]= 0, ["y"]= 414, - ["w"]= 288, - ["h"]= 290 + ["w"]= 139, + ["h"]= 138 } } }, diff --git a/src/TreeData/3_28_ruthless_alternate/tattoo-active-effect-3.png b/src/TreeData/3_28_ruthless_alternate/tattoo-active-effect-3.png index 1dcfb6763eb..ed968d559f7 100644 Binary files a/src/TreeData/3_28_ruthless_alternate/tattoo-active-effect-3.png and b/src/TreeData/3_28_ruthless_alternate/tattoo-active-effect-3.png differ diff --git a/src/TreeData/3_28_ruthless_alternate/tree.lua b/src/TreeData/3_28_ruthless_alternate/tree.lua index 1314b73b2bc..77e92ec5050 100644 --- a/src/TreeData/3_28_ruthless_alternate/tree.lua +++ b/src/TreeData/3_28_ruthless_alternate/tree.lua @@ -11,10 +11,6 @@ return { { ["id"]= "Ascendant", ["name"]= "Scavenger" - }, - { - ["id"]= "Reliquarian", - ["name"]= "Scavenger" } } }, @@ -1419,6 +1415,7 @@ return { "988", "1525", "307", + "36659", "7629" } }, @@ -15098,7 +15095,7 @@ return { }, [35069]= { ["skill"]= 35069, - ["name"]= " Lightning Damage", + ["name"]= "Lightning Damage", ["icon"]= "Art/2DArt/SkillIcons/passives/AtlasTrees/BreachBossClaspedHands.png", ["ascendancyName"]= "Breachlord", ["isBloodline"]= true, @@ -17399,7 +17396,8 @@ return { ["orbit"]= 4, ["orbitIndex"]= 15, ["out"]= { - "307" + "307", + "36659" }, ["in"]= { "988" @@ -17495,7 +17493,8 @@ return { ["orbitIndex"]= 5, ["out"]= { "307", - "42689" + "42689", + "36659" }, ["in"]= {} }, @@ -17614,6 +17613,22 @@ return { "39463" } }, + [36659]= { + ["skill"]= 36659, + ["name"]= "Tabula Rasa", + ["icon"]= "Art/2DArt/SkillIcons/passives/KeystoneArmourMaster.png", + ["isNotable"]= true, + ["ascendancyName"]= "Ascendant", + ["stats"]= {}, + ["group"]= 60, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= {}, + ["in"]= { + "4888", + "39463" + } + }, [7629]= { ["skill"]= 7629, ["name"]= "Passive Point",